这是小提琴。
我正在尝试使用 div 显示$().show()
,但它不起作用。我怀疑这是因为它在 a 中else if () {...}
,但我不确定。
if/else if
声明:
if (i !== "" && ii !== "" && iii !== "") {
$('#dialog').show();
$('#dialog').dialog({
modal: true,
dialogClass: 'no-close',
buttons: [{
text: 'OK',
click: function () {
$(this).dialog('close');
}
}]
});
} else if (i === "" || ii === "" || iii === "") {
$('#error').show();
}