3

セレクター使用時

$(this).children('td ').eq(0).html() 

私は得る

<input name="abc" type="checkbox" value="checked" class="check2" id="xyz" checked="">

この入力要素から「id」を取得したい。

4

2 に答える 2

2
$(this).children('td:first').find('input[type="checkbox"]').prop('id');
于 2013-02-08T09:59:32.657 に答える
0

もっと早く

var $t=$(this);

$t.find("> td:first-child").get(0).id

消えるコメントに答えるために編集してください:

現在の勝者

キャッシュされた.find()

var $ a = $('#a'); $ a.find('。b');

http://vaughnroyko.com/the-real-scoop-on-jquery-find-performance/

于 2013-02-08T10:07:20.730 に答える