--- title: String.prototype.big() slug: Web/JavaScript/Reference/Global_Objects/String/big translation_of: Web/JavaScript/Reference/Global_Objects/String/big ---
big()
方法的作用是创建一个使字符串显示大号字体的{{HTMLElement("big")}}标签。
str.big()
带有 {{HTMLElement("big")}}标签的字符串。
big()
方法会将一个字符串嵌入到<big>标签中:
"<big>str</big>"。
使用big()函数
下面的例子使用了字符串方法来改变一个字符串的字体大小:
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)); // <fontsize=7>Hello, world</fontsize>
使用 {{domxref("HTMLElement.style", "element.style")}} 对象,你能更加一般地获得和操作该元素的style属性,比如:
document.getElementById('yourElemId').style.fontSize = '2em';
Specification | Status | Comment |
---|---|---|
{{SpecName('ES6', '#sec-string.prototype.big', 'String.prototype.big')}} | {{Spec2('ES6')}} | 初始定义。 在JavaScript 1.0中实现。在(规范性)附件B中定义了用于Web浏览器的附加ECMAScript 特性。 |
{{SpecName('ESDraft', '#sec-string.prototype.big', 'String.prototype.big')}} | {{Spec2('ESDraft')}} | 在(规范性)附件B中定义了用于Web浏览器的附加ECMAScript 特性。 |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | {{CompatVersionUnknown}} | {{CompatGeckoDesktop("1.0")}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatGeckoMobile("1.0")}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} | {{CompatVersionUnknown}} |