JavaScript 中 slice 、substr 和 substring的区别:
1: String.slice(start,end): 一个新的字符串。包括字符串 stringObject 从 start 开始(包括 start)到 end 结束(不包括 end)为止的所有字符.
2: String.substring(start,end) 这个就有点特别了,它是先从start,end里找出一个较小的值. 然后从字符串的开始位置算起,截取较小值位置和较大值位置之间的
字符串,截取出来的字符串的长度为较大值与...
永远居中的层(不管怎么拉动滚动条)最新完美CSS版 IE FF
<!--
.mydiv {
background-color: #FFCC66;
border: 1px solid #f00;
text-align: center;
line-height: 50px;
font-size: 12px;
font-weight: bold;
width: 300px;
height: 100px;
left:50%;/*FF IE7*/
top:50%;/*FF IE7*/
margin-left:-150px!important;/*FF IE7 该值为本身宽的一半 */
margin-top:-50px!important;/*FF IE7 该值为本身高的一半*/
margin-left:0px;
margin-top:0px;
position:fixed!i...
RCP运行路径检测报告
长久以来一直为RCP的文件路径获取在IDE环境时和产品发布时不同苦恼不已,今天终于可以宣布已经fix了这个难题。
检测报告如下:
在 eclipse中运行时得到的路径结果:
Platform.getLocation().toString():E:/Eclipse/runtime-operationtool.product
Platform.getProduct().getDefiningBundle().getLocation():initial@reference:E:/Eclipse/workspace/operationtool/
Activator.getDefault().getBundle(...