1。
//使用變量的屬性
<script type="text/javascript">
var txt="Hello World!"
document.write(txt.length)
</script>
2。
//把字符串中的所有字母都被轉化為大寫字母。
<script type="text/javascript">
var str="Hello world!"
document.write(str.toUpperCase())
</script>
3。
//js中個變量添加超鏈接
<script type="text/javascript">
var txt="Hello World!"
document.write("<p>超鏈接為: " + txt.link("http://www.w3school.com.cn") + "</p>")
</script>
4。
//indexOf方法(定位字符串中某一個指定的字符首次出現的位置。如果沒有查到返回-1,區分大小寫)
<script type="text/javascript">
var str="Hello world!"
document.write(str.indexOf("Hello") + "<br />") //1
document.write(str.indexOf("World") + "<br />") //-1
document.write(str.indexOf("world")) //6
</script>
5。
//match() 方法
//使用 match() 來查找字符串中特定的字符,並且如果找到的話,則返回這個字符。
<script type="text/javascript">
var str="Hello world!"
document.write(str.match("world") + "<br />") //world
document.write(str.match("World") + "<br />") //null
document.write(str.match("worlld") + "<br />") //null
document.write(str.match("world!")) //world!
</script>
6。
//replace() 方法在字符串中用某些字符替換另一些字符。
var str="Visit Microsoft!"
document.write(str.replace("Microsoft","W3School"))
7.
//合並兩個數組
<script type="text/javascript">
var arr = new Array(3)
arr[0] = "George"
arr[1] = "John"
arr[2] = "Thomas"
var arr2 = new Array(3)
arr2[0] = "James"
arr2[1] = "Adrew"
arr2[2] = "Martin"
document.write(arr.concat(arr2))
</script>