当使用JQuery检查复选框时,如何执行操作?

前端之家收集整理的这篇文章主要介绍了当使用JQuery检查复选框时,如何执行操作?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
用户检查一个复选框时,我想做一个动作,但是我无法让它工作,我做错了什么?

所以基本上,一个用户去我的页面,勾选框,然后弹出警报.

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');
    }
});
原文链接:https://www.f2er.com/jquery/179763.html

猜你在找的jQuery相关文章