百变鹏仔-专注前端行业精选
js获取url参数
作者:鹏仔先生日期:2020-07-03 11:32:26浏览:4960分类:JavaScript
js获取url参数
复制下方代码,自定义一个公共js文件
function getUrlKey (name) { return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.href) || [, ''])[1].replace(/\+/g, '%20')) || null }
页面引入,调用如下
<script> var GetId = getUrlKey('id') var GetPage = getUrlKey('page') console.log(GetId) console.log(GetPage) </script>
通过上方方法,你就可以简单获取到对应的参数,通过参数你就可以为所欲为了呀!
例如 http://iqzhan.com?id=520&page=1314 最终打印结果为 520 和 1314
之前也分享了 Vue中 如何获取url后面传的参数
手机扫码访问
猜你还喜欢
- 11-01 vue中实现代码高亮
- 08-09 vue动态修改网站的icon图标
- 07-08 VUE中ECharts提示框tooltip自动切换
- 07-03 网页中生成微信小程序二维码
- 07-02 微信小程序判断是安卓还是苹果
- 06-28 vue实现表格自动滚动功能 vue-seamless-scroll
- 04-19 VUE实现点击复制
- 04-16 vue将页面生成图片 vue生成海报
- 04-16 vue路由切换滑动效果 vue页面跳转交互 vue实现动画跳转
- 04-16 table固定表头和列 css实现表格固定表头
- 04-07 vue跳转页面清除历史记录,页面跳转删除历史记录
- 02-22 VUE You are using the runtime-only build of Vue where the template compiler is not available. Either
取消回复欢迎 你 发表评论:
- 搜索
- 随机tag
暂无评论,来添加一个吧。