Javscript 获取 URL 参数
- <script type="text/javascript">
- <!--
- function getvalue(name)
- {
- var str=window.location.search;
- if (str.indexOf(name)!=-1)
- {
- var pos_start=str.indexOf(name)+name.length+1;
- var pos_end=str.indexOf("&",pos_start);
- if (pos_end==-1)
- {
- return str.substring(pos_start);
- }
- else
- {
- return str.substring(pos_start,pos_end)
- }
- }
- else
- {
- return "";
- }
- }
- //for test: http://localhost/a.html?p1=11&p2=22
- document.write(location.search);
- alert(getvalue("p1"));
- alert(getvalue("p2"));
- //-->
- </script>
复制代码
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论