Jquery $.Post 在 Firefox 中有效,但在 Chrome 中无效

发布于 2024-10-07 08:31:55 字数 635 浏览 1 评论 0原文

我正在使用 Jquery 将 POST 数据传递给 PHP 脚本,但是该函数似乎只在 Firefox 上运行,而在 chrome 上不起作用。 下面是一个登录失败的 Jquery 帖子示例:

   $(document).ready(function() {
      $("#loginform").submit(function() {
         var username = $("#username").val();
         var password = $("#password").val();
         $.post("ex.php", { 
            username: username,
            password: password }, 
            function(data) {
               $("#response").hide().html(data).show('fade','fast' );
               });
            return false;
         });
      });

它不像 Firefox 中那样像正确的 AJAX 请求那样运行,而是简单地刷新 Chrome 中的页面。

有什么想法吗?

谢谢。

I'm using Jquery to pass POST data to PHP scripts, however the function only seems to work on Firefox and not function on chrome.
Here is an example Jquery post for logging in that fails:

   $(document).ready(function() {
      $("#loginform").submit(function() {
         var username = $("#username").val();
         var password = $("#password").val();
         $.post("ex.php", { 
            username: username,
            password: password }, 
            function(data) {
               $("#response").hide().html(data).show('fade','fast' );
               });
            return false;
         });
      });

Instead of functioning like a proper AJAX request as it does in Firefox, it simply refreshes the page in Chrome.

Any ideas?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

彩虹直至黑白 2024-10-14 08:31:55

您可能没有发送正确的变量?

unameval: username ,
pwordval: password }, 

我的意思是,您将值分配给用户名和密码变量,但从不使用它们,而是发送 unameval 和 pwordval。如果未定义 unameval,浏览器将出错并且不会继续。 Firefox 可能有您稍后在缓存中意外更改的正确版本,因此可以继续工作。也许,也许……

you are not sending the correct variables, maybe?

unameval: username ,
pwordval: password }, 

I mean you assign the values to username and password variables but never use them and send unameval and pwordval instead. If unameval is not defined, browser would err and not continue. Firefox may have the correct version you accidentally changed later on cache, so keeps working. Maybe, maybe...

心作怪 2024-10-14 08:31:55

我有一个简单的问题,没有转换一些发布数据 .toString()

该代码在其他一些浏览器中工作,但在 Chrome 中不起作用。
那里有人。

I had a simple problem of not converting some post data .toString()

The code worked in some other browsers but not in chrome.
HTH someone out there.

却一份温柔 2024-10-14 08:31:55

Chrome 和 jquery 在 POST 方面表现不佳。这就是那个短篇故事。尝试升级到最新版本的 JQuery。

Chrome and jquery dont play nice in terms of POST. That's the short story. Try upgrading to the latest version of JQuery.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文