$("<div id='divLoading1' >Loading...<div>").dialog({
modal: true,
resizable: false,
width: 200,
height: 100
});
$("#divLoading1").prev().remove();//won't remove title
$("#divLoading1").prev().hide();
我想从对话框中获得标题,但这不起作用,为什么?