Javascript:删除两个相同脚本实例中的冲突

发布于 2024-12-13 10:22:34 字数 144 浏览 2 评论 0原文

我制作了一个简单的滚动条,但是当我创建第二个滚动条时,第一个滚动条停止工作,代码在这里 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 技术交流群。

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

发布评论

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

评论(2

三人与歌 2024-12-20 10:22:34

您正在执行 window.onload = 两次。第二次执行此操作时,您将替换第一次分配的内容。

You are doing window.onload = twice. The 2nd time you do this, you're replacing what you had assigned the first time.

欢烬 2024-12-20 10:22:34

将功能放入附加到 onload 的单个方法中。

另外,重构——它本质上是相同的代码。

Put the functionality into a single method attached to onload.

Also, refactor--it's essentially identical code.

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