Javascript:删除两个相同脚本实例中的冲突
我制作了一个简单的滚动条,但是当我创建第二个滚动条时,第一个滚动条停止工作,代码在这里 http:// jsfiddle.net/3aZLE/3/ 非常感谢
i make a simple scroller but when i create the second scrooler, the first stop working, the code is here http://jsfiddle.net/3aZLE/3/
Thanks so much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在执行
window.onload =
两次。第二次执行此操作时,您将替换第一次分配的内容。You are doing
window.onload =
twice. The 2nd time you do this, you're replacing what you had assigned the first time.将功能放入附加到
onload
的单个方法中。另外,重构——它本质上是相同的代码。
Put the functionality into a single method attached to
onload
.Also, refactor--it's essentially identical code.