javascript - getchangeremove URL parameters with jQuery? - Stack Overflow

I was looking over this question and searching google but I didn't find any update, so I am wonder

I was looking over this question and searching google but I didn't find any update, so I am wondering if any of you know anything more recent because the last update on

.plugins was in 2009 and 2010 on

Or any other ideas? I need to add/change/remove parameters to my url

I was looking over this question and searching google but I didn't find any update, so I am wondering if any of you know anything more recent because the last update on

https://github./blairmitchelmore/jquery.plugins was in 2009 and 2010 on https://github./cowboy/jquery-bbq

Or any other ideas? I need to add/change/remove parameters to my url

Share Improve this question edited May 23, 2017 at 12:06 CommunityBot 11 silver badge asked Jan 25, 2012 at 19:52 AlexAlex 7,68825 gold badges86 silver badges153 bronze badges 5
  • You'd like to alter the URL after having a loaded page? – Hacknightly Commented Jan 25, 2012 at 20:01
  • yes... exactly, after the page has been loaded – Alex Commented Jan 25, 2012 at 20:02
  • This is tough to do, mainly because of the security issues involved. Are you unable to use either of the plugins you linked to? I'd imagine these would only manipulate the hash value. – Hacknightly Commented Jan 25, 2012 at 20:07
  • i didn't tried them out because I am looking first for a more recent version to see if something... if not than I will see if they work. From 2009 to 2012 something better could've appeared – Alex Commented Jan 25, 2012 at 20:12
  • Manipulating query parameters is such a basic thing that it doesn't hardly matter whether the code is brand new or several years old. – simon Commented Jan 25, 2012 at 20:15
Add a ment  | 

1 Answer 1

Reset to default 10

Its easy to do by pure JS.

See this code from www.samaxes.

var queryParameters = {}, queryString = location.search.substring(1),
    re = /([^&=]+)=([^&]*)/g, m;

while (m = re.exec(queryString)) {
    queryParameters[decodeURIComponent(m[1])] = decodeURIComponent(m[2]);
}

// Add new parameters or update existing ones
queryParameters['newParameter'] = 'new parameter';
queryParameters['existingParameter'] = 'new value';
location.search = $.param(queryParameters);

Its not flawless. But at least it can give you some idea.

Update 1:
Here is a function I wrote for another answer (cant remember). It works perfect.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743665339a4486879.html

相关推荐

  • javascript - getchangeremove URL parameters with jQuery? - Stack Overflow

    I was looking over this question and searching google but I didn't find any update, so I am wonder

    1天前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信