JavaScript 关于 Bootstrap 5 个错误
JavaScript on Bootstrap 5 bug
我不确定为什么下面的 JS 在我的 Bootstrap 页面上不起作用。我是直接从在线教程中获取此代码的,但我似乎无法按照讲师的方式使用它。控制台告诉我他的问题出在下面脚本的第 3 行。
if (error != "")
{
$("#error").html('<div class="alert alert-danger"
role="alert"><strong> There was error(s) in your form:</strong>'
+ error+ '</div>');
}
});
不换行地重写你的代码:
if (error != "") {
$("#error").html('<div class="alert alert-danger" role = "alert" > <strong> There was error(s) in your form:</strong>' + error + '</div>');
}
});
我不确定为什么下面的 JS 在我的 Bootstrap 页面上不起作用。我是直接从在线教程中获取此代码的,但我似乎无法按照讲师的方式使用它。控制台告诉我他的问题出在下面脚本的第 3 行。
if (error != "")
{
$("#error").html('<div class="alert alert-danger"
role="alert"><strong> There was error(s) in your form:</strong>'
+ error+ '</div>');
}
});
不换行地重写你的代码:
if (error != "") {
$("#error").html('<div class="alert alert-danger" role = "alert" > <strong> There was error(s) in your form:</strong>' + error + '</div>');
}
});