1
:".id"メソッドがこのjQueryコードで機能しないのはなぜですか?私は、次のしている
var thisTable = $(this).closest('table').id;
Firebugのは示しています
$(this).closest('table').id -> Undefined
ただし、以下の作業を行います。
$(this).closest('table').attr('id') -> "myTable"
$(this).closest('table').prop('id') -> "myTable"
のようなjQueryのセレクタの後にサポートされていません.ID方法です。最も近い?
[この回答](http://stackoverflow.com/questions/10578566/jquery-this-id-returnよりも、jsのオブジェクトを取得するには
$(this).closest('table')[0]
を行う必要があります-undefined)が役立ちます。 –