Home >Web Front-end >JS Tutorial >JavaScript method to encode url URL_javascript skills

JavaScript method to encode url URL_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:08:461507browse

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.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn