JQueryUI Dialog Size
问题 I'm new to JQueryUI, and though I have a dialog working, it doesn't open at the size I think I'm specifying. Why does setting the width and height when the dialog is defined not affect the initial size of the dialog? How do I make it 600px by 500 px? Here is the div that defines the dialog: <div id="dialog-form" title="Create Appointment"> <form> . . . </form> </div> Here is the JavaScript that makes a dialog of it: $(function() { $("#dialog-form").dialog({ autoOpen: false, maxWidth:600,