要在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中搜尋連結的目標屬性的值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!