名站网址导航为大家提供关于网站网页设计设计相关的的教程知识。
- 本篇文章具体介绍如下
String对象可用于处理或格式化文本字符串以及确定和定位字符串中的子字符串。
String字符串对象常见方法总结如下:
"helloWorld".toUpperCase() 返回转换为大写字母的字符串
"helloWorld".toLowerCase() 返回转换为小写字母的字符串
"helloWorld".substr(1, 5) 返回一个从指定位置开始的指定长度的子字符串
"helloWorld".split("o") 将字符串分割为子字符串,然后将结果 (数组) 作为字符串数组返回
"helloWorld".slice ( 1,5 ) 返回字符串截取后的字符串片段
"helloWorld".replace (" o " , " O ") 返回字符串进行文字替换后的内容(只替换第一个匹配结果)
<script> var str = "www.phpddt.COM"; document.write(str.indexOf("php") "<br>"); //4 document.write(str.lastIndexOf("php") "<br>"); //4 document.write(str.replace("php","PhP") "<br>"); //www.PhPddt.COM document.write(str.slice(1,5) "<br>"); //ww.p document.write(str.substr(1,5) "<br>"); //ww.ph document.write(str.toLowerCase(str) "<br>"); //www.phpddt.com document.write(str.toUpperCase(str) "<br>"); //WWW.PhPDDT.COM </script>
好了关于网站网页设计设计相关的这篇文章就给大家介绍到这里不明白的地方给本站留言。声明,本站内容来源于互联网,如果侵犯了你的权益请联系本站删除。,中,string,对象,详细,介绍,Strinjs和jquery分别验证单选框、复选框、下拉框