入力の検証をアラートではなく 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">
アドバイス?