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