我在这里:
var row = table.getSelection()[0].row;
console.log(data.getValue(row,0));
console.log((data.getValue(row,0)).val());
我得到了:
<input class="span2 form-control" id="pocetak1" size="16" type="text" value="2013-04-01" readonly>
Uncaught TypeError: Object <input class="span2 form-control" id="pocetak1" size="16" type="text" value="2013-04-01" readonly> has no method 'val'
如何从value
???
data.getValue(row,0)
答案 0 :(得分:3)
val
是jQuery API的一部分。原生元素仅公开.value
。在javascript中的输入元素上使用.value
将为您提供其值。