Javascript đã cung cấp document.href và document.target để lấy href và các thuộc tính đích trong một liên kết. Một liên kết thường được đặt trong
Tìm thuộc tính href
Để nhận thuộc tính href, document.href phải được sử dụng. Trong ví dụ sau, href thuộc tính bao gồm một liên kết có tên "https://www.tutorialspoint.com/", liên kết này sẽ được hiển thị sau khi chương trình được thực thi.
Ví dụ
<html> <body> <p><a id="myId" href="https://www.tutorialspoint.com/">tutorialspoint</a></p> <script> var ref = document.getElementById("myId").href; document.write(ref); </script> </body> </html>
Đầu ra
tutorialspoint https://www.tutorialspoint.com/
Tìm thuộc tính mục tiêu
Để đạt được mục tiêu thuộc tính, document.target phải được sử dụng. Trong ví dụ sau, thuộc tính target " _union "được hiển thị khi chương trình được thực thi.
Ví dụ
<html> <body> <p><a id="myId" target="_union" href="https://www.tutorialspoint.com/">tutorialspoint</a></p> <script> var ref = document.getElementById("myId").target; document.write(ref); </script> </body> </html>
Đầu ra
tutorialspoint _union