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

จะรับ URL ปัจจุบันใน JavaScript ได้อย่างไร


วัตถุ window.location สามารถใช้เพื่อรับ URL ปัจจุบันได้

window.location.href ส่งคืน href(URL) ของหน้าปัจจุบัน

ฉันกำลังใช้รหัสเหล่านี้ในโปรเจ็กต์ MVC ของฉัน

ตัวอย่าง

<html>
   <body>
      <div>
         <p id ="dd"></p>
      </div>
      <script type="text/javascript">
         var iid=document.getElementById("dd");
        alert(window.location.href);
      iid.innerHTML = "URL is" + window.location.href;
   </script>
</body>
</html>