gpt4 book ai didi

javascript - Uncaught ReferenceError : Invalid left-hand side in assignment (anonymous function) in Coldfusion

转载 作者:行者123 更新时间:2023-11-28 21:02:56 24 4
gpt4 key购买 nike

我在 google chrome 开发者工具中遇到了 Uncaught ReferenceError :赋值中的左侧无效(匿名函数)。这是代码

<!--
_CF_checkreset-password-form = function(_CF_this)
{
//reset on submit
_CF_error_exists = false;
_CF_error_messages = new Array();
_CF_error_fields = new Object();
_CF_FirstErrorField = null;


//display error messages and return success
if( _CF_error_exists )
{
if( _CF_error_messages.length > 0 )
{
// show alert() message
_CF_onErrorAlert(_CF_error_messages);
// set focus to first form error, if the field supports js focus().
if( _CF_this[_CF_FirstErrorField].type == "text" )
{ _CF_this[_CF_FirstErrorField].focus(); }

}
return false;
}else {
return true;
}
}
//-->

有人可以帮忙吗?

最佳答案

我猜错误出现在第一行:_CF_checkreset-password-form = function(_CF_this)。您不能使用 +- 或任何其他运算符等字符创建 var。试试这个:_CF_checkreset_password_form = function(_CF_this)

关于javascript - Uncaught ReferenceError : Invalid left-hand side in assignment (anonymous function) in Coldfusion,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10526582/

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