码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript字符串对象(string)基本用法

时间:2017-09-10 01:11:02      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:长度   nta   用法   lin   contain   alt   txt   www   font   

1.获取字符串的长度:
var s = "Hello world";
document.write("length:"+s.length);
2.为字符串添加各种样式
var txt = "Some words";
document.write("<p>Big: " + txt.big() + "</p>")
document.write("<p>Small: " + txt.small() + "</p>")
document.write("<p>Bold: " + txt.bold() + "</p>")
document.write("<p>Italic: " + txt.italics() + "</p>")
document.write("<p>Blink: " + txt.blink() + " (does not work in IE)</p>")
document.write("<p>Fixed: " + txt.fixed() + "</p>")
document.write("<p>Strike: " + txt.strike() + "</p>")
document.write("<p>Fontcolor: " + txt.fontcolor("Red") + "</p>")
document.write("<p>Fontsize: " + txt.fontsize(16) + "</p>")
document.write("<p>Link: " + txt.link("http://www.jb51.net") + "</p>")
3.获取字符串中部分内容首次出现的位置:
var hw_text = "Hello world";
document.write(hw_text.indexOf("Hello")+"<br/>");
document.write(hw_text.indexOf("world")+"<br/>");
document.write(hw_text.indexOf("abc")+"<br/>");
4.内容替换:
var str="Visit Microsoft!"
document.write(str.replace(/Microsoft/,"W3School"))

JavaScript字符串对象(string)基本用法

标签:长度   nta   用法   lin   contain   alt   txt   www   font   

原文地址:http://www.cnblogs.com/gaho213/p/7499923.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!