JavaScript String-anchor()方法
时间:2019-08-20 13:50:48 来源:igfitidea点击:
说明
此方法创建一个HTML锚定,用作超文本目标。
语法
String.anchor( anchorname )
属性
anchorname−定义锚的名称。
返回值
返回具有定位标记的字符串。
示例
var str = new String("Hello world"); console.log(str.anchor( "myanchor" )); // <a name = "myanchor">Hello world</a>