String.prototype.small()

已废弃
该特性已经从 Web 标准中删除,虽然一些浏览器目前仍然支持它,但也许会在未来的某个时间停止支持,请尽量不要使用该特性。

small() 方法的作用是创建一个使字符串显示小号字体的 <small> 标签。

语法

str.small()

返回值

带有 <small> 标签的字符串。

描述

small() 方法会 将一个字符串嵌入到<small> 标签中: "<small>str</small>"。

示例

使用small()函数

为了改变一个字符串的字体大小,下面的例子使用了字符串中的方法:

var worldString = 'Hello, world';

console.log(worldString.small());     // <small>Hello, world</small>
console.log(worldString.big());       // <big>Hello, world</big>
console.log(worldString.fontsize(7)); // <font size="7">Hello, world</fontsize>

使用element.style对象,你能更加一般地获得和操作该元素的属性,比如:

document.getElementById('yourElemId').style.fontSize = '0.7em';

规范

Specification Status Comment
ECMAScript 2015 (6th Edition, ECMA-262)
String.prototype.small
Standard 初始定义。 在JavaScript 1.0中实现。在(规范性)附件B中定义了用于Web浏览器的附加ECMAScript 特性。
ECMAScript Latest Draft (ECMA-262)
String.prototype.small
Draft 在(规范性)附件B中定义了用于Web浏览器的附加ECMAScript 特性。

浏览器兼容性

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) 1.0 (1.7 or earlier) (Yes) (Yes) (Yes)
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) (Yes) 1.0 (1.0) (Yes) (Yes) (Yes)

相关链接