“Dapatkan URL JS saat ini” Kode Jawaban

Dapatkan URL JS saat ini

var currentUrl = window.location.href;
Grepper

Dapatkan JavaScript URL saat ini

window.location.pathname; // Returns path only (/path/example.html)
window.location.href;     // Returns full URL (https://example.com/path/example.html)
window.location.origin;   // Returns base URL (https://example.com)
Spyder

JavaScript mendapatkan domain

window.location.hostname
Friendly Hawk

Dapatkan URL saat ini dengan JavaScript?

console.log(window.location.href);

As noted in the comments, the line below works, but it is bugged for Firefox.
document.URL
Mr. Samy

JavaScript mendapatkan URL saat ini

let location = window.location.href;
Undefined

Dapatkan URL saat ini dengan JavaScript?

window.location.href
As noted in the comments, the line below works, but it is bugged for Firefox.

document.URL
shafeeque

Jawaban yang mirip dengan “Dapatkan URL JS saat ini”

Pertanyaan yang mirip dengan “Dapatkan URL JS saat ini”

Lebih banyak jawaban terkait untuk “Dapatkan URL JS saat ini” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya