1.传参页面
Javascript代码:<script type=”text/javascript”>// <![CDATA[
function send(){
var url = "test01.html"
var userName = $("#userName").html()
window.open(encodeURI(url + "?userName=" + userName))}
// ]]>
</script>
2. 接收参数页面:test02.html
<script>
var urlinfo = window.location.href//获取url
var userName = urlinfo.split(“?”)[1].split(“=”)[1]//拆分url得到”=”後面的参数
$(“#userName”).html(decodeURI(userName))
</script>
二:如何获取Url“?”后,“=”的参数值:
A.首先用window.location.href获取到全部url值。
B.用split截取“?”后的全部
C.split(“?”)后面的[1]内数字,默认从0开始计算
三:Js中escape,unescape,encodeURI,encodeURIComponent区别:
1.传递参数时候使用,encodeURIComponent否则url中很容易被”#”,”?”,”&”等敏感符号隔断。
2.url跳转时候使用,编码用encodeURI,解码用decodeURI。
3.escape() 只是为0-255以外 ASCII字符 做转换工作,转换成的 %u**** 这样的码,如果要用更多的字符如 UTF-8字符库 就一定要用 encodeURIComponent() 或 encodeURI() 转换才可以成 %nn%nn 这的码才可以,其它情况下escape,encodeURI,encodeURIComponent编码结果相同,所以为了全球的统一化进程,在用 encodeURIComponent() 或 encodeURI() 代替 escape() 使用
那不叫乱码,而是url编码,js本身就是读取url编码的对于js获取url的中文可以尝试用escape() encodeURI() encodeURIComponent() decodeURI()
来使js停止或者转换url编码
使用ascii码即可function native2ascii(nativecode) {
nativecode = nativecode.split("")
var ascii = ""
for (var i = 0i <nativecode.lengthi++) {
var code = Number(nativecode[i].charCodeAt(0))
if (code >127) {
var charAscii = code.toString(16)
charAscii = new String("0000").substring(charAscii.length, 4) + charAscii
ascii += "\\u" + charAscii
} else {
ascii += nativecode[i]
}
}
return ascii
}