比如:
urls=https://i.cnblogs.com/EditArticles.aspx?opt=1&haha=中國
請求的url
http://www.w3school.com.cn/jsref/jsref_encodeURIComponent.asp需要將urls整個傳入后台,這時候可能會存在丟失部分urls參數
需要用到encodeURIComponent函數
window.href="http://www.w3school.com.cn/jsref/jsref_encodeURIComponent.asp&urls=" + encodeURIComponent(urls)