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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript字符串对象(string)基本用法相关的知识,希望对你有一定的参考价值。

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)基本用法的主要内容,如果未能解决你的问题,请参考以下文章

javascript基本属性访问对象的属性和方法

JavaScript中的String类型

JavaScript---- 基于对象的操作

从零开始学习前端JAVASCRIPT — 3JavaScript基础string字符串介绍

js解析与序列化json数据(一)json.stringify()的基本用法

JavaScript学习手册(42)