search屬性設置或返回的查詢字符串的URL,包括問號的部分(?)。
querystring部分是URL中問號(?)后面的部分。這通常用于參數(shù)傳遞。
返回搜索屬性:
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屬性