Location search 屬性
Location 對(duì)象定義和用法
search 屬性是一個(gè)可讀可寫(xiě)的字符串,可設(shè)置或返回當(dāng)前 URL 的查詢(xún)部分(問(wèn)號(hào) ? 之后的部分)。
語(yǔ)法
location.search
瀏覽器支持
所有主要瀏覽器都支持 search 屬性
實(shí)例
實(shí)例
返回URL的查詢(xún)部分。假設(shè)當(dāng)前的URL就是//hgci.cn/submit.htm?email=someone@ example.com:
<script>
document.write(location.search);
</script>
document.write(location.search);
</script>
以上實(shí)例輸出結(jié)果:
?email=someone@example.com
Location 對(duì)象
更多建議: