不同浏览器显示不同消息
我正在使用 jquery post 模块......
$('#btnAuthentication').click(function(){
$.post('callc2dm?param=authentication', function(data) {
alert(data);
});
});
警报在 Chrome、IE 中正确显示,但在 firefox 中显示不正确 对于 chrome,它显示的值为“来自服务器身份验证”,这是正确的,因为我只是检查数据是否来自服务器,但是当我在 FireFox 中运行相同的代码时,它会显示类似这样的消息 [object XMLDocument]为什么
会这样呢?
提前致谢.............
I am working with the jquery post module....
$('#btnAuthentication').click(function(){
$.post('callc2dm?param=authentication', function(data) {
alert(data);
});
});
The alert show correctly in Chrome,IE but not in firefox
for chrome it shows the value as "From Server authentication" which is correct as I am just checking whether data is coming from server or not but when I run the same code in FireFox it shows a message like this [object XMLDocument]
Why is it so?
Thanks in advance.............
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的,我已经修复了,我在发回响应时没有设置内容类型,因此不同的浏览器会以不同的方式看到内容,并显示消息等。 ......
它解决了我的问题。现在每个浏览器都按要求显示消息。
Ok I get it fixed , I am not setting the content type when sending back the response,so different browsers are seeing the content differently, and showing the message as and so...........
and it solved my issue.Now every browser is showing the message as it is required to do so.
我们来试试这段代码。
Let's try this code.