這篇文章主要介紹了JavaScript中的anchor()方法使用,是JS入門學習中的基礎知識,需要的朋友可以參考下
此方法創建一個用作超文本目標的HTML錨。
語法
?
1 string.anchor( anchorname )下面是參數的詳細信息:
anchorname: 定義了錨的名稱
返回值:
返回其錨標記的字符串
例子:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 <html> <head> <title>JavaScript String anchor() Method</title> </head> <body> <script type="text/javascript"> var str = new String("Hello world"); alert(str.anchor( "myanchor" )); </script> </body> </html>這將產生以下結果:
?
1 <a name="myanchor">Hello world</a>