我使用以下代码验证certaim字段。
var x = document.forms["myForm"]["obs"].value;
if (x == null || x == "") {
alert("All the fields are mandatory..");
return false;
}
我尝试用带有两个按钮的模态替换alrt动作:返回字段和保持空白
答案 0 :(得分:0)
尝试斑马对话。这是非常有用的插件。 http://stefangabos.ro/jquery/zebra-dialog/
var x = document.forms["myForm"]["obs"].value;
if (x == null || x == "") {
$.Zebra_Dialog('All the fields are mandatory..', {
'type': 'question',
'title': 'Custom buttons',
'buttons': ['Return To field', 'Leave Empty'],
});
return false;
}