Facebox 似乎使用 IE7 发送 HTML 而不是 JS

发布于 2024-11-29 03:29:19 字数 445 浏览 3 评论 0原文

我正在使用 Facebox 通过 Ruby on Rails 应用程序编辑记录。 Facebox 会弹出编辑表单,然后我提交该表单以使用 AJAX 更新记录。

它可以在 Chrome、FireFox、Safari 和 IE8 上正常工作,

而 IE7 上的链接实际上会呈现新页面,因此它实际上不会调用 AJAX,并且查看服务器日志,我看到:

由 Admin::Products::LicenseAssignmentsController#edit as 处理 HTML(IE 7)

而不是

由 Admin::Products::LicenseAssignmentsController#edit 作为 JS 处理 (其他浏览器)

你知道如何解决这个问题吗?

I'm using Facebox to edit a record with my Ruby on Rails App. The Facebox pops up with edit form that I then submit to update the record with AJAX.

It works fine with Chrome, FireFox, Safari and IE8

with IE7 the link actually renders new page so it doesn't actually call AJAX and looking at server logs I see:

Processing by Admin::Products::LicenseAssignmentsController#edit as
HTML (IE 7)

instead of

Processing by Admin::Products::LicenseAssignmentsController#edit as JS
(other browsers)

Do you know how to resolve this?

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

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

发布评论

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

评论(1

只怪假的太真实 2024-12-06 03:29:19

AJAX 被称为组件顺序的原因之一是必需的。
检查 javascript 库的顺序,并查看日志(控制台)浏览器。

PS这个错误只出现在IE7中?

One of the reasons that AJAX is called the order of components is required.
Check the order of the javascript libraries, and look at the log (console) browser.

P. S. This error only occurs in IE7?

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