我对 jEditable 感到疯狂......在我的情况下,回调似乎被调用了两次,我的表中有一个 fnUpdate:
oTable.$("td.my_class").editable(function(value, settings) {
if (ifItsNumeber(value)) {
console.log("It's a number.");
var aPos = oTable.fnGetPosition( this );
console.log("aPos: "+aPos);
oTable.fnUpdate(qnttSL, aPos[0], aPos[1]));
return(value);
} else {
console.log("It's not a NUMBER");
return(null);
}
}, {
width: '100%',
onblur : 'submit'
});
我究竟做错了什么?