标签:js、jquery等
<script>
var checkSubmitFlg = false;
$("条件").click(function(){
//判断是否已经提交
if(checkSubmitFlg == true){
return false;
}
checkSubmitFlg = true;
//提交代码
submit();
});
</script>
本文出自 “Java_晨曦” 博客,请务必保留此出处http://19951995.blog.51cto.com/12620826/1969676
标签:js、jquery等
原文地址:http://19951995.blog.51cto.com/12620826/1969676