Home >Web Front-end >JS Tutorial >JavaScript method to encode url URL_javascript skills
The example in this article describes how JavaScript encodes URLs. Share it with everyone for your reference. The specific analysis is as follows:
JavaScript encodes the url, just use encodeURIComponent
var myUrl = 'http://www.baidu.com'; var myOtherUrl = "http://www.jb51.net/index.html?url="+encodeURIComponent(myUrl);
I hope this article will be helpful to everyone’s JavaScript programming design.