チェックボックスがチェックされている場合のjQuery 質問する

チェックボックスがチェックされている場合のjQuery 質問する

以下に、同じチェックボックスがオンになっている場合にのみトリガーする関数がありますtr

$(".add_menu_item_table").live('click', function() {
  if ($('input.checkbox_check').attr(':checked')); {
    // I want this to trigger.
  }
});
<table id="table-data">
  <tbody>
    <tr>
      <td><input type="checkbox" class="checkbox_check"></td>
      <td><input type="button" class="add_menu_item_table" value="Add"></td>
    </tr>
    <tr>
      <td><input type="checkbox" class="checkbox_check"></td>
      <td><input type="button" class="add_menu_item_table" value="Add"></td>
    </tr> 
  </tbody>
</table>

ベストアンサー1

if ($('input.checkbox_check').is(':checked')) {

おすすめ記事