如何使用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');

冉冉说

如果URI中有一个哈希标记,这行得通吗?如果#somethingChrome中有,则您必须使用window.location.hash而不是window.location.search... 
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript