我对 jQuery UI 有点陌生。
我有:
// dialog profile options
$(document).ready(function() {
var $dialog = $('<div></div>')
.html('This dialog will show every time!')
.dialog({
autoOpen: true,
title: 'Basic Dialog'
});
$('#setAccountSettings').click(function() {
$dialog.dialog('open');
// prevent the default action, e.g., following a link
return false;
});
});
如何设置minWidth
为 600 和minHeight
200?抱歉,我对此有些陌生。
谢谢