码迷,mamicode.com
首页 > 编程语言 > 详细

How to get URL parameters with Javascript?

时间:2014-12-09 19:29:13      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   java   on   div   

function getURLParameter(name) {
  return decodeURIComponent((new RegExp(‘[?|&]‘ + name + ‘=‘ + ‘([^&;]+?)(&|#|;|$)‘).exec(location.search)||[,""])[1].replace(/\+/g, ‘%20‘))||null
}

So you can use:

myvar = getURLParameter(‘myvar‘);

 

How to get URL parameters with Javascript?

标签:style   blog   io   ar   color   sp   java   on   div   

原文地址:http://www.cnblogs.com/dupeng0811/p/How_to_get_URL_parameters_with_Javascript.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!