本文介绍了如何传递querystring像---> www.something.com/[email protected]的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我需要在查询字符串中显示电子邮件ID的'@'符号...但是当我尝试使用以下代码时, 将'@'符号替换为'%40' $(表格)。submit(function(){ var str; str = $(form)。serialize(); str = decodeURI(str); return true; }); 解决方案 (form)。submit(function(){ var str; str = (form)。serialize(); str = decodeURI(str); 返回true; }); 嗨Sagar, 试试这个 HttpServerUtility.Encode [ ^ ]和链接 [ ^ ] 希望这会对你有所帮助。 问候, RK i need to show '@' symbol of email id in query string...but when i m trying to use the following code,its replacing '@' symbol with '%40' $("form").submit(function () { var str; str = $("form").serialize(); str = decodeURI(str); return true; }); 解决方案 ("form").submit(function () { var str; str =("form").serialize(); str = decodeURI(str); return true; });Hi Sagar,Try this HttpServerUtility.Encode[^] and link[^]Hope this helps you a bit.Regards,RK 这篇关于如何传递querystring像---> www.something.com/[email protected]的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
11-02 22:14