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에서 링크의 target 속성 값을 검색하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!