Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm cách nào để lấy giá trị của thuộc tính rel của một liên kết trong JavaScript?


Để nhận giá trị của thuộc tính rel của một liên kết trong JavaScript, hãy sử dụng rel bất động sản. rel được sử dụng để đặt trạng thái sau của trang, tức là theo dõi và nofollow.

Ví dụ

Bạn có thể thử chạy mã sau để nhận giá trị của rel thuộc tính của một liên kết.

<!DOCTYPE html>
<html>
   <body>
      <p><a id="anchorid" rel="nofollow" href="https://www.qries.com/">Qries</a></p>
      <script>
         var myVal = document.getElementById("anchorid").rel;
         document.write("Value of rel attribute: "+myVal);
      </script>
   </body>
</html>