我正在使用jQuery计算(版本0.4.09)插件来计算出两个表格单元格的总量。在总价格字段中,该值设置为0,我不想要。当在parseNumber()方法中查看jquery.field.js文件时,我可以看到这在第137行设置为0:
// if the value is null, use 0
if( v == null ){
v = 0; // update value
// if there's a error callback, execute it
if( jQuery.isFunction(options.onParseError) ) options.onParseError.apply($el, [sMethod]);
$.data($el[0], "calcParseError", true);
我尝试删除此检查,但在总价格输入字段中显示“NaN”消息。
有解决方法吗?因为当用户填写表单时我不希望值默认为0.
非常感谢