如何使用jquery将uft8格式的参数发送到页面?
请看一下这个 jquery 代码:
$("#ImageButton1").click(function () {
var url = "Goods.aspx?key=" + $("#<%= TextBoxSearch.ClientID %>").val();
$("#iframeID").attr("src", url);
});
它可以工作,但是当我尝试在 good.aspx 页面加载的另一侧通过其他语言输入 TextBoxSearch 时,我将使用 Request.QueryString["key"] 获取参数给我这样的“?????? ?????? ??????”。
这很有趣,当我将文本复制并粘贴到 TextBoxSearch 中时,它在 Goods.aspx Pageload 事件中效果很好。
Please, look at this jquery code :
$("#ImageButton1").click(function () {
var url = "Goods.aspx?key=" + $("#<%= TextBoxSearch.ClientID %>").val();
$("#iframeID").attr("src", url);
});
It works but when I'm trying to enter in TextBoxSearch by other language at the other side in my page load of good.aspx I'll get parameters using Request.QueryString["key"] it gives me like this "?????? ???? ????".
That's interesting when I copy and paste text into TextBoxSearch at result it works good at the Goods.aspx Pageload event.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试编码:
Try encoding: