คุณสมบัติต้นทางของตำแหน่งส่งกลับสตริงที่สอดคล้องกับโปรโตคอลของ URL ชื่อโฮสต์ หมายเลขพอร์ตโฮสต์ (หากระบุไว้)
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
ส่งกลับค่าของ จุดเริ่มต้น ทรัพย์สิน
location.origin
ตัวอย่าง
เรามาดูตัวอย่างสำหรับ ที่มาของตำแหน่ง ทรัพย์สิน −
<!DOCTYPE html> <html> <head> <title>Location origin</title> <style> form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } </style> </head> <body> <form> <fieldset> <legend>Location-origin</legend> <label for="urlSelect">Current URL:</label> <input type="url" size="30" id="urlSelect" value="https://www.example.com:2544/aboutUs"> <input type="button" onclick="getorigin()" value="Get origin"> <div id="divDisplay"></div> </fieldset> </form> <script> var divDisplay = document.getElementById("divDisplay"); var urlSelect = document.getElementById("urlSelect"); function getorigin(){ divDisplay.textContent = 'URL Origin: '+location.origin; } </script> </body> </html>
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
ก่อนคลิก 'รับต้นทาง' ปุ่ม −
หลังจากคลิก 'รับต้นทาง' ปุ่ม −