JQuery toFixed 不是函数
JQuery toFixed is not a function
我有这个 JavaScript 代码:
if($('#numlic').val() <= 10) {
$('#totalprice').text(23.10 * $('#numlic').val()).toFixed(2);
}
但它不起作用,我收到 "toFixed is not a function" 错误。
你能帮我吗?
提前致谢。
这是一个简单的错字:
if($('#numlic').val() <= 10) {
$('#totalprice').text((23.10 * $('#numlic').val()).toFixed(2));
}
toFixed
函数是 Number
的扩展。当您想要设置“23.10 * $('#numlic').val()
”的结果时,您正在尝试设置元素 $('#totalprice')
.toFixed(2)
。
我有这个 JavaScript 代码:
if($('#numlic').val() <= 10) {
$('#totalprice').text(23.10 * $('#numlic').val()).toFixed(2);
}
但它不起作用,我收到 "toFixed is not a function" 错误。 你能帮我吗? 提前致谢。
这是一个简单的错字:
if($('#numlic').val() <= 10) {
$('#totalprice').text((23.10 * $('#numlic').val()).toFixed(2));
}
toFixed
函数是 Number
的扩展。当您想要设置“23.10 * $('#numlic').val()
”的结果时,您正在尝试设置元素 $('#totalprice')
.toFixed(2)
。