最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Javascript passing an encoded url to window.location.href - Stack Overflow

programmeradmin2浏览0评论

I'd like to redirect a page with javascript using the following code:

    var s = 'http://blahblah/' + encodeURIComponent(something);
    alert(s);
    window.location.href = s;

The alert shows the correct encoded url but when I pass it to window.locaion.href, it redirects the page to the unencoded url which is wrong. How could I do it properly? Thanks

I'd like to redirect a page with javascript using the following code:

    var s = 'http://blahblah/' + encodeURIComponent(something);
    alert(s);
    window.location.href = s;

The alert shows the correct encoded url but when I pass it to window.locaion.href, it redirects the page to the unencoded url which is wrong. How could I do it properly? Thanks

Share Improve this question asked Feb 21, 2014 at 14:38 user1213679user1213679 2691 gold badge4 silver badges12 bronze badges 5
  • it's working fine at my side. – Suman Bogati Commented Feb 21, 2014 at 14:43
  • For me it's fine with chrome but not with firefox. – Needpoule Commented Feb 21, 2014 at 14:43
  • For me its working in both browsers. – Suman Bogati Commented Feb 21, 2014 at 14:49
  • 1 Actually it's working on both. But firefox shows the unencoded url in the url bar. – Needpoule Commented Feb 21, 2014 at 14:50
  • Sounds like a versions issue! For interest's sake could you tell us what versions of what browser did not work for you? – taddy hoops Commented Apr 11, 2014 at 8:36
Add a ment  | 

1 Answer 1

Reset to default 6

This could be related to (a) using firefox or (b) specific APIs that you're feeding encodedComponent into, like Google search.

Here's one tested solution on Firefox-stable:

var clearComponent = 'flowers for my boyfriend & husband on valentines';
var encodedComponent = encodeURIComponent(clearComponent);
var googleSafeComponent = encodedComponent.replace(/%20/g,'+');  // replaces spaces with plus signs for Google and similar APIs
var pleteURI = 'http://google./?q=' + googleSafeComponent;
window.location = pleteURI;

Or all in one line:

window.location = 'http://google./?q=' + encodeURIComponent('flowers for my boyfriend & husband on valentines').replace(/%20/g,'+');

window.location implies window.location.href so you can save some letters. ;)

发布评论

评论列表(0)

  1. 暂无评论