2012年10月10日 星期三

js encode a url string

Reference
Check out the built-in function encodeURIComponent(str) and encodeURI(str). In your case, this should work:

var myOtherUrl = "http://example.com/index.html?url=" + encodeURIComponent(myUrl);

沒有留言: