jquery的setTimeOut定时器使用
Posted PHP急先锋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery的setTimeOut定时器使用相关的知识,希望对你有一定的参考价值。
目的:用户提交表单,一直触发校验事件。
1、效果:
2、代码:
<!-- 去掉必填提示 --> <script type="text/javascript"> $(document).ready(function() { $("#C_NextButton").click(function(){ check_license(); }) }); function check_license(){ //console.log("aa"); if($("input[name=\'business_licence_pic\']").val() != "" || $("input[name=\'business_guarantee_pic\']").val() != ""){ $("#err_mustUpload").css("display","none"); } if($("input[name=\'IDcard_false_pic\']").val() != "" && $("input[name=\'IDcard_true_pic\']").val() != ""){ $("#err_UpCard").css("display","none"); } if($("input[name=\'IDcard_hand_pic\']").val() != ""){ $("#enids").css("display","none"); } setTimeout("check_license()",2000); } </script>
以上是关于jquery的setTimeOut定时器使用的主要内容,如果未能解决你的问题,请参考以下文章