要在JavaScript中搜索鏈接的目標屬性值,請使用target屬性。您可以嘗試運行以下代碼以獲取目標屬性的值。
示例
<!DOCTYPE html> <html> <body> <p><a id = "qriesid" target="_self" href = "https://qries.com/" type = "text/html" >Qries</a></p> <script> var x = document.getElementById("qriesid").target; document.write("Value of the target attribute: "+x); </script> </body> </html>
登錄后復制
以上就是如何在JavaScript中搜索鏈接的目標屬性的值?的詳細內容,更多請關注www.92cms.cn其它相關文章!