我正在使用 Boxy jQuery Plug-in ( Boxy Plug-In ),并且正在尝试更改框的大小。我试过这个,但没有奏效:
var Dialog = new Boxy("<div style='left-margin:40px;'><p><b>Event Name:</b> " + FoundType.Name + "</p><p><b>Event Type:</b> " + FoundCategory.Name + "</p><p><b>Date: </b>" + FoundType.Date.toDateString() + "</p><p><b>Comments:<br /></b>" + FoundType.Details + "</p></div>", { title: "<h><b>Detail</b></h>", modal: true, show: false });
Dialog.resize(400, 400);
Dialog.show();
请问有什么帮助吗?