如何创建在特定时间段(15 秒)后启用关闭按钮的 HTA?

发布于 2024-10-19 17:10:09 字数 50 浏览 0 评论 0原文

如何创建在特定时间段(15 秒)后启用关闭按钮的 HTA?

提前致谢。

How can I create an HTA that enable close button after certain time period(15 sec)?

Thank in advance.

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

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

发布评论

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

评论(1

留蓝 2024-10-26 17:10:09
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Enable close button after 15 sec</title> 
<script type="text/javascript">
window.onload = function(){
    setTimeout(function(){
        document.getElementById('close-button').style.display = 'inline';
    }, 15000);
}
</script>
</head>
<body>
<input type="button" value="Close" name="close-button" id="close-button" style="display:none;" /> 
</body>

</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Enable close button after 15 sec</title> 
<script type="text/javascript">
window.onload = function(){
    setTimeout(function(){
        document.getElementById('close-button').style.display = 'inline';
    }, 15000);
}
</script>
</head>
<body>
<input type="button" value="Close" name="close-button" id="close-button" style="display:none;" /> 
</body>

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