要在javascript中获取链接的href属性值,请使用href属性。它可以在javascript中给出链接文档的url。
示例您可以尝试运行以下代码以获取链接的href属性值。
在线演示
<!doctype html><html> <body> <p><a id="anchorid" href="https://www.qries.com/">qries</a></p> <script> var mylink = document.getelementbyid("anchorid").href; document.write("link: "+mylink); </script> </body></html>
以上就是如何在javascript中搜索链接的href属性的值?的详细内容。