1。
//使用变量的属性
<script type="text/网页特效">
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>
首页 1 2 3 4 5 6 末页