私は<td>
このような要素を持っています:
<td class="right editable qty">100</td>
その中の値()を取得したいのですが100
、問題が発生しました。
これが私のスクリプトです:
$('#example tbody tr td.qty').change(function () {
var sQty = $(this);
console.log(sQty); // print [<td class="right editable qty">100</td>]
console.log($.text(sQty)); // print nothing
console.log(sQty.val()); // print nothing
console.log(sQty.text()); // print nothing
console.log(sQty.html()); // print <form><input style="width: 100%; height: 100%; " autocomplete="off" name="value"></form>
});
スクリプトに何か足りないものはありますか?
私が使用しているのは、DataTablesとjeditableです。