自己常用JS和JQ 函数
Posted W+7
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自己常用JS和JQ 函数相关的知识,希望对你有一定的参考价值。
//验证码函数
<button id="send">点击发送验证码</button>
<script src="jquery.min.js"></script> <script> $(\'#send\').click(function(){ //发生送验证码函数 //.... time($(this)); }) var wait=60;//时间 function time(o){//o为按钮的对象,p为可选,这里是60秒过后,提示文字的改变 if (wait == 0) { o.removeAttr("disabled"); o.text("点击发送验证码");//改变按钮中value的值 wait = 60; } else { o.attr("disabled", true);//倒计时过程中禁止点击按钮 o.text(wait + "秒后重发");//改变按钮中value的值 wait--; setTimeout(function() { time(o);//循环调用 }, 1000) } } </script>
//生成随机数
// 生成随机数 function randombetween(min, max){ return min + (Math.random() * (max-min +1)); }
//阻止冒泡
function stopBubble(e){ e = e || window.event; if(e.stopPropagation){ e.stopPropagation(); //W3C阻止冒泡方法 }else { e.cancelBubble = true; //IE阻止冒泡方法 } }
以上是关于自己常用JS和JQ 函数的主要内容,如果未能解决你的问题,请参考以下文章