交易眼JS错误
谁能帮助我,我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不仅仅是 IE。以下错误来自 Firefox:
访问“ship_id_1”时出现问题:
修复此问题,一切都会好起来。
It's not just IE. The following error is from Firefox:
Something goes wrong when accessing "ship_id_1":
Fix this and all should be well.
与 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 startingship_
that appear nowhere on the page. Have you copied the script from a different form without changing the names?