我需要使用參數作爲字符串檢索整個URL。例如,我需要檢索以下網址:如何檢索帶參數的整個URL?
http://www.keytometals.com/page.aspx?ID=CheckArticle&site=kts&LN=EN&NM=349
我試着使用:
document.location.href,
document.URL,
window.location.href
,但它只是檢索URL的一部分:
http://www.keytometals.com/page.aspx
如何獲取包含當前URL的字符串以及其參數?
一個更新:我已經使用了
window.content.document.location.href
,我已經得到了以下網址:
http://www.keytometals.com/page.aspx?ID=CheckArticle
不幸的是,它仍然是URL的一部分。有人可以幫助我如何獲得整個URL作爲一個字符串?
謝謝!
關於什麼的只是'window.location'? –
window.location.href適合我。 –
不幸的是,也沒有window.location,window.location.href都不適合我。我已經在http://www.w3schools.com/js/tryit.asp?filename=tryjs_write嘗試過在線Javascript編輯器,編寫document.write(window.location.href),但結果是:http:/ /www.w3schools.com/js/tryit.asp – sonjafon