替代iframe新逻辑

使用ajax请求。下面是代码逻辑

$.ajax({
    url:url,
    type:'get',
    dataType: "text",
    success:function(msg){
        $('#div').html(msg)
    },
    error:function(){
        alert('error');
    }
})    

  

  

posted on 2017-03-27 14:09  _jackie  阅读(323)  评论(0编辑  收藏  举报

导航