当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript link() 方法
The link() method is used to display a string as a hyperlink.
link()方法用于将一个字符串显示为链接
stringObject.link(url) |
Parameter 参数 | Description 注释 |
---|---|
url 链接地址 | Required. Specifies the URL to link to 必选项。指定所要链接的地址 |
In this example "Free Web Tutorials!" will be displayed as a hyperlink:
在本例中,”免费在线教程“将被显示为链接:
<script type="text/javascript"> var str="免费在线教程" </script> |
link()
How to use link() to display a string as a hyperlink.
如何用link()来将一个字符串显示为链接