查找链接的 target 属性的值
- <!DOCTYPE html>
- <html>
- <body>
- <p><a id="baidu" target="_self" href="https://www.baidu.com/">baidu</a></p>
- <p>单击按钮以显示上面链接的 target 属性的值。</p>
- <button onclick="myFunction()">试一试</button>
- <p id="demo"></p>
- <script>
- function myFunction() {
- var x = document.getElementById("baidu").target;
- document.getElementById("demo").innerHTML = x;
- }
- </script>
- </body>
- </html>