示例您可以尝试运行以下代码以获取链接的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属性的值?的详细内容。