JavaScript 字符串 link() 方法
实例
显示文本:"免费网络建设教程!" 为超链接:
var str = "免费网络建设教程!";
var result = str.link("https://www.w3ccoo.com");
亲自试一试 »
页面下方有更多实例。
定义和用法
link() 方法不是标准的,可能无法在所有浏览器中按预期工作。
link() 方法用于将字符串显示为超链接。
此方法返回嵌入在 <a> 标签中的字符串,如下所示:
<a href="url">string</a>
浏览器支持
方法 | |||||
---|---|---|---|---|---|
link() | Yes | Yes | Yes | Yes | Yes |
语法
string.link("url")
参数值
参数 | 描述 |
---|---|
url | 必需。链接到的 URL |
技术细节
返回值: | <a> 标签中嵌入的字符串 |
---|---|
JavaScript 版本: | ECMAScript 1 |
更多实例
实例
相关方法的演示:
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("https://www.w3ccoo.com") + "</p>");
document.write("<p>Blink: " + txt.blink() + " (works only in Opera)</p>");
亲自试一试 »
❮ JavaScript 字符串参考