在某个时间执行html

发布于 2024-12-06 17:28:36 字数 73 浏览 1 评论 0原文

我想知道你如何在特定时间执行 html 。我有一个小的选框 html 代码,我希望在我想要的时间执行它,而不是在页面加载后立即执行。

I am wondering how you execute html on a certain time. I have a small marquee html code that I want to be executed at the time I want, instead of just immediately once the page loads.

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

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

发布评论

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

评论(2

素食主义者 2024-12-13 17:28:36

Html 不执行,但会呈现。

为了执行,您需要脚本或程序。对于客户端,您应该使用 javascipt。许多人使用的库通常可以改进他们的代码,并使编程变得更容易。我推荐 jQuery,但还有其他的。

要在 jQuery 中执行您所要求的操作很简单,您可以使用 setTimeout 来计算您希望其执行的时间,然后在超时回调函数中插入或显示 html 代码。

Html does not execute, but it renders.

For execution, you need a script or program. For client side, you should use javascipt. Many people use a library that generally improves their code, and makes programming easier. I would recommend jQuery, but there are others.

To do what you are asking in jQuery is trivial, you would use setTimeout to calculate the time you want it to execute, and then insert or display the html code in the timeout callback function.

何以心动 2024-12-13 17:28:36

最简单的方法是使用 jquery 的 marquee 插件 以简单的方式访问您的字幕
那么,HTML 不可执行!您应该创建一个客户端脚本来实现您的目的。例如:在页面中添加对 jquery.jsmarquee.jquery.js 的引用后,尝试:

HTML:

<marquee id="myMarq">Content here...</marquee>

JS:

$(document).ready(function(){
    $("#myMarq").marquee().trigger('stop');
    setTimeout(function(){
        $("#myMarq").marquee().trigger('start');
    },10000 /* or any time-out you want, in milisecond */);
});

The easiest way is to use jquery's marquee plugin to access your marquee in an easy way.
Then, the HTML is not executable! You should create a client-side script to achieve your purpose. For example: after adding a reference to jquery.js and marquee.jquery.js in your page, try:

HTML:

<marquee id="myMarq">Content here...</marquee>

JS:

$(document).ready(function(){
    $("#myMarq").marquee().trigger('stop');
    setTimeout(function(){
        $("#myMarq").marquee().trigger('start');
    },10000 /* or any time-out you want, in milisecond */);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文