$('#login_dialog').dialog({
autoOpen: true,
draggable: false,
modal: true,
title: 'Login',
buttons: {
"Connect": function () {
$(document).trigger('connect', {
jid: $('#jid').val(),
password: $('#password').val()
});
$('#password').val('');
$(this).dialog('close');
}
}
});
当用户名和密码都为空时如何显示警告框。