search属性设置或返回的查询字符串的URL,包括问号的部分(?)。
querystring部分是URL中问号(?)后面的部分。这通常用于参数传递。
返回搜索属性:
location.search
设置搜索属性:
location.search = querystring
var x = location.search; document.querySelector("#output").innerHTML = x;测试看看‹/›
所有浏览器完全支持search属性:
属性 | |||||
search | 是 | 是 | 是 | 是 | 是 |
值 | 描述 |
---|---|
querystring | 字符串,指定URL的搜索部分 |
返回值: | 一个字符串,表示URL的querystring部分,包括问号(?) |
---|
此示例显示所有位置属性:
var txt = ""; txt += "<p>Host: " + location.host + "</p>"; txt += "<p>Hostname: " + location.hostname + "</p>"; txt += "<p>Href: " + location.href + "</p>"; txt += "<p>Origin: " + location.origin + "</p>"; txt += "<p>Pathname: " + location.pathname + "</p>"; txt += "<p>Protocol: " + location.protocol + "</p>"; txt += "<p>Search: " + location.search + "</p>"; document.write(txt);测试看看‹/›
位置参考:location.pathname属性
位置参考:location.host属性
位置参考:location.href属性
位置参考:location.hash属性