错误消息:
未捕获的ReferenceError:未定义deS
我的原始代码没有deS功能。
是在jS中吗?
function getNetAmt() {
var chk = true
var ch = new checkList()
killDot("ntAmt_v1")
killDot("interestAmt_v1")
//killDot("netAmt_v1");
ch.addDecimal("ntAmt_v1", 8, 2, 1)
ch.addDecimal("interestAmt_v1", 8, 2)
chk = ch.check()
if (!chk) return false
var ntAmt = form1.ntAmt_v1.value
var interestAmt = form1.interestAmt_v1.value
form1.netAmt_v1.value = deS(ntAmt, interestAmt)
ch.addDecimal("netAmt_v1", 8, 2)
chk = ch.check()
if (!chk) return false
}