当用户检查一个复选框时,我想做一个动作,但是我无法让它工作,我做错了什么?
if($("#home").is(":checked")) { alert(''); }
解决方法
你正在寻找什么叫做一个事件. JQuery提供了简单的事件绑定方法
$("#home").click(function() { // this function will get executed every time the #home element is clicked (or tab-spacebar changed) if($(this).is(":checked")) // "this" refers to the element that fired the event { alert('home is checked'); } });