tutorial pengembangan web terbaru
 

Lokasi Properti href

Referensi Obyek Lokasi lokasi Obyek

Contoh

Mengembalikan seluruh URL (dari halaman saat ini):

var x = location.href;

Hasil x akan:

Cobalah sendiri "

Lebih "Cobalah Sendiri" contoh di bawah ini.


Definisi dan Penggunaan

Properti href menetapkan atau mengembalikan seluruh URL dari halaman saat ini.


Dukungan Browser

Milik
href iya nih iya nih iya nih iya nih iya nih

Sintaksis

Kembali properti href:

location.href

Mengatur properti href:

location.href= URL

Nilai properti

Value Type Description
URL String Specifies the URL of the link.

Possible values:

  • An absolute URL - points to another web site (like location.href="http://www.example.com/default.htm")
  • A relative URL - points to a file within a web site (like location.href="default.htm")
  • An anchor URL - points to an anchor within a page (like location.href="#top")
  • A new protocol - specifies a different protocol (like location.href="ftp://someftpserver.com", location.href="mailto:[email protected]" or location.href="file://host/path/example.txt")

Rincian teknis

Kembali Nilai: Sebuah String, yang mewakili seluruh URL halaman, termasuk protokol (seperti http: //)

contoh

Contoh lebih

Contoh

Set nilai href untuk menunjuk ke situs web lain:

location.href = "http://www.cnn.com";
Cobalah sendiri "

Contoh

Set nilai href untuk menunjuk ke sebuah jangkar dalam halaman:

location.href = "#top";
Cobalah sendiri "

Contoh

Set nilai href untuk menunjuk ke alamat email (akan membuka dan membuat pesan email baru):

location.href = "mailto:[email protected]";
Cobalah sendiri "

Referensi Obyek Lokasi lokasi Obyek