JavaScriptKā uzzināt lappuses URL?
Ļoti bieži rodas vajadzība piešķirt mainīgajam atvērtās lappuses
URL(adresi) bet ne vienmēr zināms, kā to izdarīt. Lūk, smalks piemērs:
Code
<script>
// pieņemsim, ka lapas adrese ir:
// http://studioad.ru/blog/test.html?enother_data#diff_data
document.location
document.location.href
// darbojas apmēram vienādi - atgriezīs visu URL pilnībā
document.location.protocol
// atgriezīs http:
document.location.hostname
// atgriezīs studioad.ru
document.location.pathname
//atgriezīs /blog/test.html
document.location.hash
// atgriezīs #diff_data
document.location.search
// atgriezīs ?enother_data
</script>
// pieņemsim, ka lapas adrese ir:
// http://studioad.ru/blog/test.html?enother_data#diff_data
document.location
document.location.href
// darbojas apmēram vienādi - atgriezīs visu URL pilnībā
document.location.protocol
// atgriezīs http:
document.location.hostname
// atgriezīs studioad.ru
document.location.pathname
//atgriezīs /blog/test.html
document.location.hash
// atgriezīs #diff_data
document.location.search
// atgriezīs ?enother_data
</script>