不同浏览器显示不同消息

发布于 2025-01-08 07:46:38 字数 450 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤凫 2025-01-15 07:46:38

好的,我已经修复了,我在发回响应时没有设置内容类型,因此不同的浏览器会以不同的方式看到内容,并显示消息等。 ......

response.setContentType("text/html");

它解决了我的问题。现在每个浏览器都按要求显示消息。

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...........

response.setContentType("text/html");

and it solved my issue.Now every browser is showing the message as it is required to do so.

兮子 2025-01-15 07:46:38

我们来试试这段代码。

 $('#btnAuthentication').click(function(){
   $.ajax({
     type: 'POST',
     url: 'callc2dm',
     data: (
       { param: 'authentication' }
     ),
     success: function(data){
       alert(data);
     }
   }); 
 });

Let's try this code.

 $('#btnAuthentication').click(function(){
   $.ajax({
     type: 'POST',
     url: 'callc2dm',
     data: (
       { param: 'authentication' }
     ),
     success: function(data){
       alert(data);
     }
   }); 
 });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文