交易眼JS错误

发布于 2024-08-29 16:42:55 字数 541 浏览 4 评论 0原文

谁能帮助我,我有一个 IE javascript 问题。

我真的很困惑,客户刚刚让我注意到了这一点。

该网站是 http://www.fleurofengland.com/,它是结帐页面,因此如果您愿意请访问该网站,将任何东西添加到您的购物篮中,然后进行结账。

问题是当您进入结帐页面时 (https://www.fleurofengland.com/ eaction/checkout.billing/),在“账单和送货详细信息”标题下,您将看到一个名为“国家/地区”的下拉列表。

下面是另一个名为“县/州”的下拉列表,该下拉列表旨在从上面的“国家/地区”的值填充,但它不起作用。

请帮助或建议修复。

提前致谢,

凯尔

Can anyone help me, I have a IE javascript issue.

I am really stuck and the client has just brought it to my attention.

The site is http://www.fleurofengland.com/, its the check out page so if you would be kind enough to goto the site, add anything to your basket and go through to the checkout.

The problem is when you get to the checkout page (https://www.fleurofengland.com/eaction/checkout.billing/), under the 'Billing and Delivery Details' heading you will see a dropdown called country.

Below that is another dropdown called County/State, this dropdown is meant to be populated from the values of the 'country' one above however its not working.

Please help or suggest a fix.

Thanks in Advance,

Kyle

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

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

发布评论

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

评论(2

渡你暖光 2024-09-05 16:42:55

不仅仅是 IE。以下错误来自 Firefox:

访问“ship_id_1”时出现问题:

document.getElementById("ship_id_1") is null
https://www.fleurofengland.com/eaction/checkout.billing/
Line 2773

修复此问题,一切都会好起来。

It's not just IE. The following error is from Firefox:

Something goes wrong when accessing "ship_id_1":

document.getElementById("ship_id_1") is null
https://www.fleurofengland.com/eaction/checkout.billing/
Line 2773

Fix this and all should be well.

烟燃烟灭 2024-09-05 16:42:55

与 IE 无关,它到处都会失败,因此您可以使用任何浏览器的调试工具(例如 Firebug)来帮助您。

您正在使用 document.getElementById 来获取对名称以 ship_ 开头但页面上任何位置都没有出现的元素的引用。您是否从其他表单复制了脚本而不更改名称?

Nothing to do with IE, it fails everywhere, so you can use debugging tools for any browser (eg. Firebug) to help you.

You're using document.getElementById to get references to elements with names starting ship_ that appear nowhere on the page. Have you copied the script from a different form without changing the names?

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