我正在使用:http: //blogs.digitss.com/javascript/jquery-javascript/jquery-fancy-custom-radio-and-checkbox/
简单的代码:
<input type="radio" id="a1" class="b1" name="shipping" checked value="single">
<input type="radio" id="a1" class="b1" name="shipping" value="married">
<input type="radio" id="a1" class="b1" name="shipping" value="widowed">
简单的头:
$(document).ready(function(){
$(".radio").dgStyle();
$(".checkbox").dgStyle();
});
如果我添加到 $(document).ready ,在 ($".checkbox").dgStyle(); 以下:
alert($('input:radio[name=shipping]:checked').val());
它工作正常!
但是 - 如果我做这样的事情,它不工作:
$(function() {
$("input:radio[name=shipping]:checked").change(function() {
alert("123");
});
});
我试图删除:检查,仍然无法正常工作。
- 也许您知道相同颜色的不同 jquery 自定义按钮,它可以做到..?