我想使用 jquery 使我的 div 可拖动和调整大小。这是一个简单的div:
<div id="dialog-modal-alerts" title="Alerts" style="display:none;"></div>
这就是我使用 jquery 的方式:
$("#dialog-modal-alerts").dialog({
height: 500,
width: 900,
title: strTitle,
resizable:true,
draggable:true,
dialogClass: "alertDialog",
//buttons: [{ text: "Ok", click: function() { $( this ).dialog( "close" ); } }],
close: function (event, ui) { closeDialog(number) },
modal: true
});
它不起作用。如果我写它会起作用
$(function () {
$("#dialog-modal-alerts").draggable();
});
但如果我写
$(function () {
$("#dialog-modal-alerts").resizable();
});
它仍然无法正常工作有人可以帮助解决我的问题吗?