Jquery $.Post 在 Firefox 中有效,但在 Chrome 中无效
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能没有发送正确的变量?
我的意思是,您将值分配给用户名和密码变量,但从不使用它们,而是发送 unameval 和 pwordval。如果未定义 unameval,浏览器将出错并且不会继续。 Firefox 可能有您稍后在缓存中意外更改的正确版本,因此可以继续工作。也许,也许……
you are not sending the correct variables, maybe?
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...
我有一个简单的问题,没有转换一些发布数据 .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.
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.