วิธีการกำหนดตำแหน่ง HTML () จะโหลดเอกสาร HTML ใหม่โดยไม่ต้องแทนที่ URL ของเอกสาร HTML ปัจจุบันจากประวัติเอกสาร
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
location.assign(URL)
ให้เราดูตัวอย่างของ HTML Location assign() Method−
ตัวอย่าง
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat; text-align: center; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 20px; width: 330px; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem auto; } </style> <body> <h1>HTML Location assign() Method Demo</h1> <button class="btn" onclick="display()">Load Tutorialspoint</button> <script> function display() { location.assign("https://tutorialspoint.com/"); } </script> </body> </html>
ผลลัพธ์
คลิกที่ “โหลดจุดสอน ” เพื่อโหลดเอกสาร tutorialspoint ในเอกสารปัจจุบัน−