日期:2014-05-16 浏览次数:20763 次
<div id="id" style="display:none">
$.ajax({
global: false,
url:url+"&random="+Math.random(),
type: 'post',
dataType: 'html',
cache:false,
timeout: 10000,
success: function(res){
$("id").html(res);
$("id").dialog({
autoOpen:false,
title:""+titleText,
modal:true,
width:800,
height:460,
show: "slow",
resizable:false
});
$("id").dialog("open");
}
});