JavaScript 1.3 String
阿新 • • 發佈:2018-12-18
一、String方法示例
<script> var str = new Ren('王二' ,25); function Ren(name, age) { this.name = name; this.age = age; } Ren.prototype.shen = "學生" ;/*給Ren物件新增公用的屬性shen和公用的方法get()*/ Ren.prototype.my = get(); document.write(str.constructor);/*constructor返回建立物件函式的引用*/ function get() { return '你好'; } document.write(str.my); var st = new String ('hello world'); document.write(st.anchor("myanchor"));/*寫入一個錨點a,name為myanchor*/ document.write(st.strike());/*使用刪除線來顯示字串。*/ document.write(st.fontcolor('red'));/*設定文字的顏色*/ document.write(st.link("http://www.baidu.com"));/*給字串加跳轉連結*/ document.write(st.toUpperCase());/*將字串全部變為大寫*/ document.write(st.fixed());/*以打字機文字顯示字串*/ document.write(st.charAt(1));/*返回位置為1的字元*/ document.write(st.concat(" I come from China"));/*返回連線後的字串*/ document.write(st.indexOf('r'));/*檢索字串,返回它的位置;lastIndexOf從後向前檢索*/ document.write(st.replace("o","k"));/*返回用k替換字串中的o的新字串*/ document.write(st.match("o"));/*返回匹配字串中的o,沒有返回null*/ </script>