How to alert using jQuery

后端 未结 3 711
野性不改
野性不改 2021-01-30 16:10

This works:

$(\'.overdue\').addClass(\'alert\');

But this doesn\'t:

$(\'.overdue\').alert(\'Your book is overdue.\'); 
<         


        
3条回答
  •  春和景丽
    2021-01-30 16:48

    $(".overdue").each( function() {
        alert("Your book is overdue.");
    });
    

    Note that ".addClass()" works because addClass is a function defined on the jQuery object. You can't just plop any old function on the end of a selector and expect it to work.

    Also, probably a bad idea to bombard the user with n popups (where n = the number of books overdue).

    Perhaps use the size function:

    alert( "You have " + $(".overdue").size() + " books overdue." );
    

提交回复
热议问题