三连击
Posted wulicute-ts
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了三连击相关的知识,希望对你有一定的参考价值。
<html> </head> <script> function clickTime() { var text_ = document.form.text_; text_.value++; var T = setInterval(() => { text_.value = "0"; clearInterval(T) }, 1000); if (text_.value == "3") { alert("点击了三次"); text_.value = "0"; } } </script> </head> <body onclick="clickTime()"> <form name="form" style="margin:20px auto;width:15px;height: 15px;"> <input type="button" name="text_" value=0 disabled style="margin:20px auto;width:28px;height: 20px;"> </form> </body> </html>
以上是关于三连击的主要内容,如果未能解决你的问题,请参考以下文章