objek lokasiLOGIN

objek lokasi

Objek lokasi mewakili maklumat URL halaman semasa. Contohnya, URL lengkap:

http://www.example.com:8080/path/index.html?a=1&b=2#TOP

boleh diperoleh menggunakan location.href. Untuk mendapatkan nilai setiap bahagian URL, anda boleh menulis:

location.protocol; // 'http'
location.host; // 'www.example.com'
location.port; // '8080'
location.pathname; // '/path/index.html'
location.search; // '?a=1&b=2'
location.hash; // 'TOP'

Untuk memuatkan halaman baharu, anda boleh menghubungi location.assign(). Jika anda ingin memuat semula halaman semasa, adalah sangat mudah untuk memanggil kaedah location.reload().

sifat objek lokasi:

QQ截图20161012171542.png

kaedah objek lokasi:

QQ截图20161012171548.png

bahagian seterusnya
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>location</title> </head> <script type="text/javascript"> var myurl=window.location.href; document.write("当前网址:"+myurl); </script> </head> <body> </body>
babperisian kursus