中文和一些特殊符号是无法直接在URL里传递的,但可以加工后传递,获取的时候再解加工
后台代码:
System.Web.HttpUtility.UrlEncode(str)
System.Web.HttpUtility.UrlDecode(str)
JS:
encodeURI(str);
decodeURI(str);
中文和一些特殊符号是无法直接在URL里传递的,但可以加工后传递,获取的时候再解加工
后台代码:
System.Web.HttpUtility.UrlEncode(str)
System.Web.HttpUtility.UrlDecode(str)
JS:
encodeURI(str);
decodeURI(str);