返回到:JavaScript对象:JavaScript Location 对象
定义和用法
search 属性是一个可读可写的字符串,可设置或返回当前 URL 的查询部分(问号 ? 之后的部分)。
语法
location.search
所有主要浏览器都支持 search 属性
实例
返回URL的查询部分。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Web176教程(Web176.com)</title> </head> <body> <div id="result"></div> <script> document.write(location.search); </script> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/javascriptbook/brtips/3530.html