最新的Web开发教程
 

JavaScript固定字符串()方法

JavaScript的字符串引用 JavaScript的字符串引用

显示文本作为打字机文本:

var str = "Hello World!";
var result = str.fixed();
试一试»

更多“试一试”的例子。


定义和用法

fixed()方法不规范,并预期在所有浏览器可能无法正常工作。

fixed()方法用于显示一字符串作为电传文本。

此方法返回嵌入在字符串<tt>标签,就像这样:

<TT>字符串</ TT>

<tt>标记不支持HTML5。 使用CSS来代替。


浏览器支持

方法
fixed()

句法

string.fixed()

参数

没有。

技术细节

返回值: 嵌入在一个字符串<tt>标签
JavaScript的版本: 1.0

例子

更多示例

相关方法的演示:

var txt = "Hello World!";

document.write("The original string: " + txt);
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>Fixed: " + txt.fixed() + "</p>");
document.write("<p>Strike: " + txt.strike() + "</p>");
document.write("<p>Fontcolor: " + txt.fontcolor("green") + "</p>");
document.write("<p>Fontsize: " + txt.fontsize(6) + "</p>");
document.write("<p>Subscript: " + txt.sub() + "</p>");
document.write("<p>Superscript: " + txt.sup() + "</p>");
document.write("<p>Link: " + txt.link("http://www.w3ii.com") + "</p>");
document.write("<p>Blink: " + txt.blink() + " (works only in Opera)</p>");
试一试»

JavaScript的字符串引用 JavaScript的字符串引用