Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะค้นหาค่าของแอตทริบิวต์ href ของลิงก์ใน JavaScript ได้อย่างไร


ในการรับค่าแอตทริบิวต์ href ของลิงก์ใน JavaScript ให้ใช้คุณสมบัติ href มันให้ URL ของเอกสารที่เชื่อมโยงใน JavaScript

ตัวอย่าง

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อรับค่าแอตทริบิวต์ href ของลิงก์

<!DOCTYPE html>
<html>
   <body>
      <p><a id="anchorid" href="https://www.qries.com/">Qries</a></p>
      <script>
         var myLink = document.getElementById("anchorid").href;
         document.write("Link: "+myLink);
      </script>
   </body>
</html>