jQuery基于闭包实现的显示与隐藏div功能示例
程序员文章站
2022-08-05 09:21:40
本文实例讲述了jquery基于闭包实现的显示与隐藏div功能。分享给大家供大家参考,具体如下:
&l...
本文实例讲述了jquery基于闭包实现的显示与隐藏div功能。分享给大家供大家参考,具体如下:
<div class="binds"> <div class="phonebind"> <h3>手机绑定</h3> <p>当前手机号码:<span id="oldphone">$!{user.phone}</span><input type="button" class="btninput" id="rebindphone" value="重新绑定"></p> <div class="updatetelwrap hidden"> <div class="newphonewrap"> <label>新手机号码<em>*</em></label> <input type="text" class="formattext" id="newphone" /> </div> <div class="identifywrap"> <label>短信验证码<em>*</em></label> <input type="text" class="inputcode" /> <input type="button" value="获取短信验证码" class="identifycode"/> <p><input type="button" value="绑定" class="bindbtn" id="newphonebind" style="float: left;" onclick="javascript:bindphone();" /></p> </div> </div> </div> <div class="emailbind"> <h3>邮箱绑定</h3> <p>当前电子邮箱:<span id="oldemail">$!{user.email}</span><input type="button" class="btninput" value="重新绑定" id="rebindemail"></p> <div class="update-email-wrap hidden"> <div class="emailwrap"> <label>新电子邮箱<em>*</em></label> <input type="text" class="formattext" id="newemail" /> <p><input type="button" value="发送验证邮件" id="sendemail" style="float: left;" class="btninput" onclick="javascript:bindemail();" /></p> </div> </div> </div> </div> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script> $(function(){ $(document).on("click","#rebindphone",bindinputclick()); $(document).on("click","#rebindemail",bindinputclick()); }) function bindinputclick(){ var i=2; return function(){ if(i%2==0){ $(this).parent().next().slidedown(); } else { $(this).parent().next().slideup(); } i++; } } </script>
感兴趣的朋友还可以使用在线html/css/javascript代码运行工具 http://tools.jb51.net/code/htmljsrun测试一下运行效果。
更多关于jquery相关内容感兴趣的读者可查看本站专题:《jquery扩展技巧总结》、《jquery常用插件及用法总结》、《jquery拖拽特效与技巧总结》、《jquery表格(table)操作技巧汇总》、《jquery中ajax用法总结》、《jquery常见经典特效汇总》、《jquery动画与特效用法总结》及《jquery选择器用法总结》
希望本文所述对大家jquery程序设计有所帮助。