|
- <label><input type="checkbox" class="checkbox" checked onclick="checkboxOnclick(this)"> 我同意<a href="">《用户协议》</a></label>
复制代码- function checkboxOnclick(checkbox){
- if ( checkbox.checked == true){
-
- alert(1);
-
- }else{
-
- alert(2);
-
- }
- }
复制代码
- function checkboxOnclick(checkbox){
- if ( checkbox.checked == true){
-
- $(".radius-20").attr("disabled",false);
- $(".radius-20").addClass("btn-blue");
-
- }else{
-
- $(".btn-blue").attr("disabled",true);
- $(".btn-blue").removeClass("btn-blue");
-
- }
- }
- <p class="pt-30"><button class="btn-blue w100 radius-20 pt-10 pb-10 " onclick="login();">登陆</button></p>
- <label><input type="checkbox" class="checkbox" checked onclick="checkboxOnclick(this)"> 我同意<a href="javascript:xy();">《用户协议》</a></label>
复制代码
|
|