gpt4 book ai didi

javascript - 使用自定义复选框,在其更改的事件上调用函数

转载 作者:行者123 更新时间:2023-11-28 16:41:52 26 4
gpt4 key购买 nike

我正在使用自定义复选框
enter image description here

这个的html

enter image description here

CSS

input[type=checkbox].css-checkbox {
position: absolute;
overflow: hidden;
clip: rect(0 0 0 0);
height:1px;
width:1px;
margin:-1px;
padding:0;
border:0;
}

input[type=checkbox].css-checkbox + label.css-label {
padding-left:20px;
height:15px;
display:inline-block;
line-height:15px;
background-repeat:no-repeat;
background-position: 0 0;
font-size:15px;
vertical-align:middle;
cursor:pointer;
}


input[type=checkbox].css-checkbox:checked + label.css-label {
background-position: 0 -15px;
}

.css-label{
background-image:url(http://csscheckbox.com/checkboxes/dark-check-green.png);
}

http://csscheckbox.com/这是我选择自定义复选框的引用链接不,如果复选框被选中,我想调用一个函数我现在做了什么

$("#coverage_checkbox").click(function () {
var a = $(this).is("checked");
});

但是每次都返回false

最佳答案

试试这个:- http://jsfiddle.net/adiioo7/x32r9/

JS:-

jQuery(function($){
$("#checkboxn01").on("change",function(){
alert($(this).is(":checked"));
});
});

关于javascript - 使用自定义复选框,在其更改的事件上调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20279930/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com