在某个时间执行html
我想知道你如何在特定时间执行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.最简单的方法是使用 jquery 的 marquee 插件 以简单的方式访问您的
字幕
。那么,
HTML
不可执行!您应该创建一个客户端脚本来实现您的目的。例如:在页面中添加对jquery.js
和marquee.jquery.js
的引用后,尝试:HTML:
JS:
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 tojquery.js
andmarquee.jquery.js
in your page, try:HTML:
JS: