<!DOCTYPE html>
<html>
<body>

	<input type="button" value="点击发送" onclick="settime(this)" />
  
  <script>
		var countdown = 30;
		function settime(obj) {
       if (countdown === 0) {
          obj.removeAttribute("disabled");
          obj.value="点击发送";
          countdown = 30;
          return;
       } else {
          obj.setAttribute("disabled", true);
          obj.value = "重新发送(" + countdown + ")";
          countdown--;
       }
       setTimeout(function() {
          settime(obj)
       },1000)
    }
  </script>
</body>
</html>

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐