Rumah > Artikel > hujung hadapan web > html问号后的值怎么获取
在javascript中,可以使用search属性获取html问号后的值,具体语法为“location.search”;search属性是一个可读可写的字符串,可设置或返回当前URL的查询部分(问号?之后的部分)。
本教程操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。
search 属性是一个可读可写的字符串,可设置或返回当前 URL 的查询部分(问号 ? 之后的部分)。
语法
location.search
实例
返回URL的查询部分。假设当前的URL就是http://www.runoob.com/submit.htm?email=cmccwifhi@ example.com:
<script> document.write(location.search); </script>
以上实例输出结果:
?email=cmccwifhi@ example.com
扩展资料:
Location 对象
Location 对象包含有关当前 URL 的信息。
Location 对象是 window 对象的一部分,可通过 window.Location 属性对其进行访问。
注意: 没有应用于Location对象的公开标准,不过所有浏览器都支持该对象。
Location对象属性
【推荐学习:javascript高级教程】
Atas ialah kandungan terperinci html问号后的值怎么获取. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!