替代iframe新逻辑
使用ajax请求。下面是代码逻辑
$.ajax({
url:url,
type:'get',
dataType: "text",
success:function(msg){
$('#div').html(msg)
},
error:function(){
alert('error');
}
})
使用ajax请求。下面是代码逻辑
$.ajax({
url:url,
type:'get',
dataType: "text",
success:function(msg){
$('#div').html(msg)
},
error:function(){
alert('error');
}
})