gpt4 book ai didi

javascript - 错误 : function is not defined

转载 作者:行者123 更新时间:2023-11-30 13:05:12 24 4
gpt4 key购买 nike

我创建了一个具有函数的js文件。
当我在 $(document).ready; 上调用该函数时,它不起作用。

我通过firebug查了下,是调用函数但不进入函数。

这是我的 JavaScript 代码:

function toggelEventButtons() {
var invoiceVal = $('#Invoice_Id').val(); //It is a textbox Id of aspx Page.

alert(invoiceVal);

if (invoiceVal > 0) {
$('#addEventInvoiceDetail').hide();
$('#editEventInvoiceDetail').show();
} else {
$('#addEventInvoiceDetail').show();
$('#editEventInvoiceDetail').hide();
}
}

我从 aspx 页面调用函数,如下所示:

$(document).ready(toggelEventButtons);

最佳答案

确保在调用 $(document).ready() 之前将文件包含在函数中。

关于javascript - 错误 : function is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15944193/

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