我应该将 javascript 放在 ContentPlaceHolder 中的什么位置?

发布于 2024-07-26 16:56:58 字数 316 浏览 4 评论 0原文

我正在使用 ContentPlaceHolder 并想从 .master 页面正文

onload="Carousel()" 的 body 标记中移动 onload="Carousel()"

但我不知道将其放在内容中的位置页。

我正在尝试实现这个

http://www.dynamicdrive.com/dynamicindex14/carousel.htm

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

http://www.dynamicdrive.com/dynamicindex14/carousel.htm

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

迷鸟归林 2024-08-02 16:56:58

当前启用它的原因

<body onload="... 

是因为脚本需要在文档加载到浏览器后运行。 此时 DOM 已完成加载,您可以访问所有元素。

您有两种选择:

将 Carosel() 的调用尽可能靠近页面底部。 通过这样做,脚本将不会运行,直到页面的其余部分加载(从上到下加载)。

处理正文 onload 事件

<script type="text/javascript">
    body.onload = Carosel;
</script>

您还可以使用 jQuery

<script type="text/javascript">
    $(document).ready(Carosel);
</script>

The reason why it's currently on

<body onload="... 

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

<script type="text/javascript">
    body.onload = Carosel;
</script>

You could also use jQuery:

<script type="text/javascript">
    $(document).ready(Carosel);
</script>
自由范儿 2024-08-02 16:56:58

这可能有点过头了,但是如果您可以访问页面上的 jQuery javascript 库,则可以将以下 javascript 放在您的内容页面上:

$(document).ready(function() {  
  Carousel();
});

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:

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