gpt4 book ai didi

Javascript:未定义不是函数错误

转载 作者:行者123 更新时间:2023-12-03 11:20:48 26 4
gpt4 key购买 nike

我有一些 javascript 想要解开,它在 PHP 表单上用于计算抵押贷款还款,但单击计算按钮没有任何反应。

查看 Chrome 控制台我收到消息

Uncaught TypeError: Undefined is not a function" on line 10($("#form_7") to 19

以下代码。

<script type="text/javascript">
$(document).ready(function() {
$("a.ActiveButton").bind({
mousedown:function(){
if ($(this).attr('disabled') === undefined )
$(this).addClass('Activated');
},
mouseleave:function(){
if ($(this).attr('disabled') === undefined )
$(this).removeClass('Activated');
},
mouseup:function(){
if ($(this).attr('disabled') === undefined )
$(this).removeClass('Activated');
}
});

$("#form_7").validate({
onkeyup: false,
showErrors: function(errorMap, errorList) {
if (errorList.length) alert(errorList[0].message);
},
onclick: false,
rules: {
'Property_Price': { number: true } ,
'Deposit': { number: true } ,
'Duration': { number: true } ,
'InterestRate': { number: true }
},
onfocusout: false,
messages: {
'Property_Price': { number: "Please enter the property purchase price." } ,
'Deposit': { number: "Please enter your deposit amount or 0 if there is no deposit." } ,
'Duration': { number: "Please enter the duration of the mortgage." } ,
'InterestRate': { number: "Please enter the mortgage interest rate." }
}
});

$('#btn_4').click( function(){validate_form_7( form_7 )});
});
</script>

有谁知道导致此错误的原因以及如何解决?

最佳答案

您似乎没有定义验证

关于Javascript:未定义不是函数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27126952/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com