猿问
如何使用Javascript获取URL参数?
Javascript没有提供执行此操作的核心方法,那么该怎么做呢?
慕村9548890
浏览 285
回答 2
2回答
湖上湖
function getURLParameter(name) { return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.search) || [null, ''])[1].replace(/\+/g, '%20')) || null;}因此,您可以使用:myvar = getURLParameter('myvar');
0
0
0
冉冉说
如果URI中有一个哈希标记,这行得通吗?如果#somethingChrome中有,则您必须使用window.location.hash而不是window.location.search...
0
0
0
随时随地看视频
慕课网APP
相关分类
JavaScript
我要回答