$('#id:checked').size()>0判断是否选中是否可以?
浏览 2066 次
锁定老帖子 主题:复选框 浏览器兼容问题解决方案
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2014-01-03
需求,会员注册,勾选统一注册协议复选框,按钮变 亮可用,
不勾选时 变灰不可用,以下是解决方案及原理: <pre name="code" class="java"> ie7 及以下版本 --> alert(typeof($("#agree").attr("checked")));返回的是boolean类型 ie8 --> alert(typeof($("#agree").attr("checked"))); 如果没有勾选,提示undefined 勾选之后提示 string ie9 或者以上版本 --> alert(typeof($("#agree").attr("checked"))); 均返回string类型 alert($("#agree").attr("checked"));勾选时返回 checked </pre> agree 复选框ID toubiao_submit 按钮ID <pre name="code" class="java"> function agree_change(){ //IE8 或以上版本浏览器 if(typeof($("#agree").attr("checked"))=="undefined" || typeof($("#agree").attr("checked"))=="string"){ if(typeof($("#agree").attr("checked"))=="undefined") { $("#agree").attr("checked","checked"); $("#toubiao_submit").attr("disabled",false); $("#toubiao_submit").removeClass("toubiao_btn_disable"); $("#toubiao_submit").addClass("toubiao_btn_able"); }else{ if($("#agree").attr("checked")=="checked"){ $("#agree").removeAttr("checked"); $("#toubiao_submit").attr("disabled",true); $("#toubiao_submit").removeClass("toubiao_btn_able"); $("#toubiao_submit").addClass("toubiao_btn_disable"); }else{ $("#agree").attr("checked","checked"); $("#toubiao_submit").attr("disabled",false); $("#toubiao_submit").removeClass("toubiao_btn_disable"); $("#toubiao_submit").addClass("toubiao_btn_able"); } } return; } //IE7 或以下版本浏览器 if(typeof($("#agree").attr("checked"))=="boolean"){ if($("#agree").attr("checked")) { $("#toubiao_submit").attr("disabled",false); $("#toubiao_submit").removeClass("toubiao_btn_disable"); $("#toubiao_submit").addClass("toubiao_btn_able"); }else{ $("#toubiao_submit").attr("disabled",true); $("#toubiao_submit").removeClass("toubiao_btn_able"); $("#toubiao_submit").addClass("toubiao_btn_disable"); } return; } } </pre> 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2014-01-03
最后修改:2014-01-03
|
|
返回顶楼 | |
发表时间:2014-01-04
对于我的 需求 理论上应该可以,实践检验真理
|
|
返回顶楼 | |