JS string fontsize()

🌙
手机阅读
本文目录结构

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

The fontsize() method creates aHTML element that causes a string to be displayed in the specified font size.

Usage note: The element has been removed in HTML5 and shouldn’t be used anymore. Instead web developers should use CSS properties.

语法

str.fontsize(size)

参数

size

An integer between 1 and 7, a string representing a signed integer between 1 and 7.

返回值

A string containing a HTML element.

描述

When you specify size as an integer, you set the font size of str to one of the 7 defined sizes. When you specify size as a string such as “-2”, you adjust the font size of str relative to the size set in the tag.

示例

使用fontsize()方法

The following example uses string methods to change the size of a string:

var worldString = 'Hello, world';

console.log(worldString.small());     // Hello, world
console.log(worldString.big());       // Hello, world
console.log(worldString.fontsize(7)); // Hello, world

With the element.styleobject you can get the element’s style attribute and manipulate it more generically, for example:

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

规范

Specification Status Comment
ECMAScript 2015 (6th Edition, ECMA-262)String.prototype.fontsize Standard Initial definition. Implemented in JavaScript 1.0. Defined in the (normative) Annex B for Additional ECMAScript Features for Web Browsers.
ECMAScript Latest Draft (ECMA-262)String.prototype.fontsize Draft Defined in the (normative) Annex B for Additional ECMAScript Features for Web Browsers.

相关链接

AXIHE / 精选资源

浏览全部教程

面试题

学习网站

前端培训
自己甄别

前端书籍

关于朱安邦

我叫 朱安邦,阿西河的站长,在杭州。

以前是一名平面设计师,后来开始接接触前端开发,主要研究前端技术中的JS方向。

业余时间我喜欢分享和交流自己的技术,欢迎大家关注我的 Bilibili

关注我: Github / 知乎

于2021年离开前端领域,目前重心放在研究区块链上面了

我叫朱安邦,阿西河的站长

目前在杭州从事区块链周边的开发工作,机械专业,以前从事平面设计工作。

2014年底脱产在老家自学6个月的前端技术,自学期间几乎从未出过家门,最终找到了满意的前端工作。更多>

于2021年离开前端领域,目前从事区块链方面工作了