JavaScript String link() 方法
-
JavaScript String link() 方法
link()方法不是标准方法,并且可能无法在所有浏览器中按预期工作。link()方法用于将字符串显示为超链接。 此方法返回嵌入在<a>标记中的字符串,如下所示:<a href="url">字符串</a>实例:显示文字:“免费网站建设教程!” 作为超链接::
尝试一下var str = "免费网站建设教程!"; var result = str.link("https://www.jc2182.com");
-
浏览器支持
项 IE/Edge Chrome FireFox Safari Opera 方法 link() 支持支持支持支持支持 -
语法
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.w3schools.com") + "</p>"); document.write("<p>Blink: " + txt.blink() + " (works only in Opera)</p>");