javascript 如何在 chrome 和 IE 上按预期工作,但在 FF 上却不行
由于某种原因,我收到的 2 个输入金额在 Firefox 中显示为空白,但在 Chrome 和 Internet Explorer 中正常工作。
谁能解释这是为什么吗?
http://vbwpublishing.com/calcpage.php
也给任何能告诉我为什么精装本的人加分当计算器应该抛出错误时,它允许我输入超过 1200 页
For some reason my 2 amount recieved inputs show up blank in Firefox, but work correctly in Chrome and Internet Explorer.
Can anyone explain why this is?
http://vbwpublishing.com/calcpage.php
also bonus points to anyone who can tell me why the hardcover calculator will allow me to put more than 1200 pages when it should be throwing an error
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查您的 FF javascript 控制台 (shift-ctrl-J):
即
您没有在 .ready() 块中执行该操作,并且具有该 ID 的
位于页面下方,因此此时尚未定义,从而终止了脚本执行的其余部分。
Check your FF javascript console (shift-ctrl-J):
which is
You're not executing that in a .ready() block, and the
<li>
with that ID is farther down the page, so it's not defined yet that point, killing the rest of the script execution.