bgiframe 会在区块的下面再插入一段 iframe, 这样就可以把下拉选单遮住, 并且让浮动区块正常显示
如果用官方的方法在IE6下出现拖动层,内容不可浏览的BUG,可以用下面的方法解决(注意:modal:true 这个参数必须有)
$('#popup_temp_assign').dialog({
modal: true,
resizable: true,
width:w,
height:h
});
$('#popup_temp_assign').css('display', 'block');
$('#popup_temp_assign').dialog('open');
$('.ui-dialog-overlay').bgiframe();