我有一个用于验证表单的 javascript 方法。但在一定条件下,控件应该停止脚本并允许用户保存表单。
'return'
关键字在这里有效吗?
if(matchSearch==null)
{
alert('Mismatch in Subsidiary and Year. Stopping script to allow form submission.');
return;
}
这个想法是,if matchSearch == null
脚本应该停止并且应该允许用户保存表单。