我有一个<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