0

現在、HTML 部分に次のコードがあります。

<div class="clearfix prettycheckbox labelright blue">
   <input class="car_type" type="checkbox" value="16" name="" style="display: none;">
   <a class="" href="#"></a>
   <label for="undefined"></label>
</div>

そして、私がこれまでJSで持っているもの:

$('.prettycheckbox').click(function () {
      var clickedValue = $(this).//here I need some code to get the input before
      alert('Value is ' + clickedValue);
});

したがって、基本的には、クリックされた div.prettycheckbox 内の入力フィールドの値 (16; value="16") を取得する必要があります。

どうやってするか?

4

4 に答える 4

0

このコードを試してください:

$('.prettycheckbox').click(function () {
      var clickedValue = $(this).children('input[type=checkbox]').val()
      alert('Value is ' + clickedValue);
});
于 2013-07-18T11:23:25.540 に答える
0
$(this).find('input[type=checkbox]:checked').val();
于 2013-07-18T11:23:48.883 に答える