我希望在 div 而不是警报中显示我的输入验证。我目前有
//check for COGs to be a number
if (isNaN($("#txtCOGs").val())) {
alert("The Cost of Goods Sold must be a number");
$("#txtCOGs").focus();
return false;
}
我正在尝试将其放在 div 中
<div id="divError">
建议?