本章内容分为三部分:
开始之前先简单了解一下
如:url地址: >
设置或获取对象指定的文件名或路径。
<script>
alert(windowlocationpathname)
</script>
设置或获取整个 URL 为字符串。
<script>
alert(windowlocationhref);
</script>
设置或获取与 URL 关联的端口号码。
<script>
alert(windowlocationport)
</script>
设置或获取 URL 的协议部分。
<script>
alert(windowlocationprotocol)
</script>
设置或获取 href 属性中在井号“#”后面的分段。
<script>
alert(windowlocationhash)
</script>
设置或获取 location 或 URL 的 hostname 和 port 号码。
<script>
alert(windowlocationhost)
</script>
设置或获取 href 属性中跟在问号后面的部分。
<script>
alert(windowlocationsearch)
</script>
你应该回去找提供你这段代码的网页,看一下getPath函数的参数obj是什么,输入参数有什么要求。
就这段代码看,obj应该是一个对象,并且这个对象有select()方法;而恰好jQuery对象就有select()方法,有可能(仅仅是有可能)你需要将obj包装成jQuery对象后,再作为getPath函数的参数代入试试。
提示:
dom对象转为jQuery对象:有dom元素el,通过$(el) *** 作就可以转为jQuery对象
var url= windowlocationhref
var ss = urlsplit('/');
for(var i =0 ;i<sslength;i++){
if(ss[i]=='goods_id')
alert(ss[i+1])
if(ss[i]=='city_code')
alert(ss[i+1])
}
设置或获取对象指定的文件名或路径。\x0d\\x0d\alert(windowlocationpathname)\x0d\\x0d\\x0d\设置或获取整个URL为字符串。\x0d\\x0d\\x0d\alert(windowlocationhref);\x0d\\x0d\设置或获取与URL关联的端口号码。\x0d\\x0d\alert(windowlocationport)\x0d\\x0d\\x0d\设置或获取URL的协议部分。\x0d\\x0d\alert(windowlocationprotocol)\x0d\\x0d\\x0d\设置或获取href属性中在井号“#”后面的分段。\x0d\\x0d\alert(windowlocationhash)\x0d\\x0d\\x0d\设置或获取location或URL的hostname和port号码。\x0d\\x0d\alert(windowlocationhost)\x0d\\x0d\\x0d\设置或获取href属性中跟在问号后面的部分。\x0d\\x0d\alert(windowlocationsearch)\x0d\
以上就是关于JS获取地址栏url参数全部的内容,包括:JS获取地址栏url参数、js获取历史url、如何用JS得到当前页面的URL信息等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)