内容目录
link()
函数返回以当前字符串对象为锚文本、指定字符串为href
属性值(URL)的<a>标签字符串。
该函数属于String
对象,所有主流浏览器均支持该函数。
语法
stringObject.link( url )
参数
参数 | 描述 |
---|---|
url | String类型指定的URL,用做<a>标签的href属性值。 |
如果参数url中包含'、"、>、<等特殊字符,将被会转义为HTML实体编码,例如:"'"、 """、 ">"、 "<"。
返回值
link()
方法的返回值为String类型,其返回值形如:
<a href="url
">stringObject
</a>
示例&说明
var str = "CodePlayer";
document.writeln( str.link("https://codeplayer.vip") ); // <a href="https://codeplayer.vip">CodePlayer</a>
str = "Google";
document.writeln( str.link("http://www.google.com.hk") ); // <a href="http://www.google.com.hk">Google</a>
0 条评论
撰写评论