String对象
- 字符串是 JavaScript 的一种基本的数据类型。
- String 对象的 length 属性声明了该字符串中的字符数。String 类定义了大量操作字符串的方法。
需要注意的是,JavaScript 的字符串是不可变的,String 类定义的方法都不能改变字符串的内容。
String对象的 方法
big()
用大号字体显示字符串
var a = "hello world";
document.write(a);
document.write(a.big());
document.write(a); 大写前
- document.write(a.big()); 大写后
anchor()
- 用于创建 HTML 锚
语法:
stringObject.anchor(anchoranme);
参数:
- anchoranme 为锚的名称,必需定义
- 如果没有定义名称,则为 undefined
实例:
var text = "hello world";
document.write(text.anchor("你好")); // hello world
- 上面的代码将输出为纯粹的 HTML:
<a name="你好">hello world</a>