★substring() substring() 方法用於提取字符串中介於兩個指定下標之間的字符。 用法javascript
stringObject.substring(start,stop) //stop可省略,默認提取到結尾
例如:java
<script type="text/javascript"> var str="Hello world!" document.write(str.substring(3,7)) </script>
輸出lo w 可得,提取的不包括第7個字符,千萬記得從0開始數;node
★split() split() 方法用於把一個字符串分割成字符串數組。 用法:數組
stringObject.split(separator,howmany) //separator是做爲分割點,返回的數組不包含這個分割點,第二個參數是數組最大長度,可省略,默認爲不限長度
例子:app
var srts = serts.split(",");
是將字符串srts按裏邊的","分割成一個字符串數組,換句話說,srts裏邊有多少個逗號,就分割成多少個字符串的數組並返回這個數組,並且數組裏面的字符串都不包括這個分割點逗號。函數
★介紹個a標籤點擊觸發函數的方法編碼
<a class="on" href="javascript:show()">個人商品庫</a>
★點擊元素回到文檔最頂部code
$(document).scrollTop(0);
★取數字的絕對值ip
document.write(Math.abs(7.25) + "<br />") document.write(Math.abs(-7.25) + "<br />") document.write(Math.abs(7.25-10))
7.25 7.25 2.75文檔
★移動元素
appendChild()方法除了能夠給元素添加子元素外,還能夠移動元素 http://www.w3school.com.cn/jsref/met_node_appendchild.asp
★encodeURI(),decodeURI()
encodeURI()函數可把字符串座位URI進行編碼。 decodeURI()函數可對encodeURI()函數編碼過的URI進行解碼