当前位置:   article > 正文

html 点击同意,一个id 绑定click事件 做不同的条件判断?

html中id的点击事件

js代码:

//弹窗注册协议

ms=window.parent.document.getElementById('inputzz1');

ks=window.parent.document.getElementById('inputzz');

$('#yes-agree').click(function(){

console.log(ms);

if(!(ms.getAttribute('checked'))){

console.log(123);

$("#inputzz1").attr("checked",true);

$("#check-do1").addClass("check-do-on");

$("button[title='注册']").removeAttr("disabled","disabled").css("background-color","#E4393C");//启用提交按钮

console.log(1234);

}

if(!(ks.getAttribute('checked'))){

$("#inputzz").attr("checked",true);

$("#check-do").addClass("check-do-on");

$(".pt-mid").css({"background-position":"-57px -303px"},

{"width":"175px"},{"height":"33px"});

$("#btnrdz").removeAttr('disabled','disabled');//禁用提交按钮

}

$('.sc-model').fadeOut().html("");

$('.sc-zzc-bg').fadeOut();

});

$('#no-agree').click(function(){

if(ms.getAttribute('checked')){

console.log(123);

$("#inputzz1").attr("checked",false);

$("#check-do1").removeClass("check-do-on");

$("button[title='注册']").attr('disabled','disabled').css("background-color","#ccc");//禁用提交按钮

}

if(ks.getAttribute('checked')){

$("#inputzz").attr("checked",false);

$("#check-do").removeClass("check-do-on");

$(".pt-mid").css({"background-position":"-610px -583px"},

{"width":"175px"},{"height":"33px"});

$("#btnrdz").attr('disabled','disabled');//禁用提交按钮

}

$('.sc-model').fadeOut().html("");

$('.sc-zzc-bg').fadeOut();

});

触发事件html片段:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/197882?site
推荐阅读
相关标签
  

闽ICP备14008679号