我应该将 javascript 放在 ContentPlaceHolder 中的什么位置?
我正在使用 ContentPlaceHolder 并想从 .master 页面正文
onload="Carousel()" 的 body 标记中移动 onload="Carousel()"
但我不知道将其放在内容中的位置页。
我正在尝试实现这个
I'm using a ContentPlaceHolder and would like to move the onload="Carousel()" from the body tag of of the .master page
body onload="Carousel()"
but I don't know where to put it in the content page.
I'm trying to implement this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当前启用它的原因
是因为脚本需要在文档加载到浏览器后运行。 此时 DOM 已完成加载,您可以访问所有元素。
您有两种选择:
将 Carosel() 的调用尽可能靠近页面底部。 通过这样做,脚本将不会运行,直到页面的其余部分加载(从上到下加载)。
或
处理正文 onload 事件
您还可以使用 jQuery:
The reason why it's currently on
is because the script needs to run after the document has been loaded in to the browser. At that time the DOM has finished loading and you have access to all of your elements.
You have two options:
Place the call to Carosel() as far towards the bottom of the page as you can go. By doing this the script won't be run until the rest of the page has loaded (loads from top to bottom).
or
handle the body onload event
You could also use jQuery:
这可能有点过头了,但是如果您可以访问页面上的 jQuery javascript 库,则可以将以下 javascript 放在您的内容页面上:
It may be overkill, but if you have access to the jQuery javascript library on the page, the following javascript can be put on your content page: