内的 JS不支持 FF 4 吗?

发布于 2024-11-18 16:14:09 字数 318 浏览 4 评论 0原文

我正在开发一个网站,在 FF4 中,位于页面正文内的 JS 不起作用。您可以在这里查看:http://www.1tryten.com/products/Laptop -Lock-Pro.html

头部中的任何 JS 都可以工作,但主体中则不行。您可以通过尝试将此商品添加到购物车或单击“撰写评论”来重现该问题。在 IE 或 Chrome 中尝试一下,它可以工作...

它可以在所有其他浏览器上工作。还有其他人遇到过这个问题吗?

I have a website I'm working on, and in FF4 the JS that is located inside the body of the page doesn't work. You can view it here: http://www.1tryten.com/products/Laptop-Lock-Pro.html

Any JS in the head works, but not the body. You can replicate the problem by trying to add this item to the cart or clicing write a review. Try it in IE or Chrome and it works...

It works on all other browsers. Anyone else encountered this problem?

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

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

发布评论

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

评论(2

倾`听者〃 2024-11-25 16:14:09

你有一个语法错误:

错误:参数列表后缺少 )
源文件:http://www.1tryten.com/products/Laptop-Lock-Pro.html
行:933,列:50
源代码:

$('#subscribe_form').append(""); 
// --------------------------------------^

您可以通过查看控制台(工具 -> 错误控制台)轻松调试代码。

它认为它也不适用于 Chrome 或 IE。

我得到的另一个错误:

错误:未捕获的异常:[异常...“底层对象不支持参数或操作”代码:“15”nsresult:“0x8053000f(NS_ERROR_DOM_INVALID_ACCESS_ERR)”位置:“http://www.1tryten .com/javascript/common.js?1 行:779"]

You have a syntax error:

Error: missing ) after argument list
Source File: http://www.1tryten.com/products/Laptop-Lock-Pro.html
Line: 933, Column: 50
Source Code:

$('#subscribe_form').append("<input type="hidden" name="check" value="1" />"); 
// ---------------------------------------^

You can debug your code easily by having a look at the console (Tools -> Error Console).

It don't think it will work in Chrome or IE either.

Another error I get:

Error: uncaught exception: [Exception... "A parameter or an operation is not supported by the underlying object" code: "15" nsresult: "0x8053000f (NS_ERROR_DOM_INVALID_ACCESS_ERR)" location: "http://www.1tryten.com/javascript/common.js?1 Line: 779"]

醉殇 2024-11-25 16:14:09

您的代码有错误 请参阅 "'

$('#subscribe_form').append("<input type="hidden" name="check" value="1" />");

应该是

$('#subscribe_form').append('<input type="hidden" name="check" value="1" />');

You have error in code See " and ' !

This:

$('#subscribe_form').append("<input type="hidden" name="check" value="1" />");

should be:

$('#subscribe_form').append('<input type="hidden" name="check" value="1" />');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文