<!-- lang: js -->
//兼容chrome,ff,ie9,safari.
<script type="text/javascript">
//新建一個窗口。
var winOp = window.open("",'_blank',"fullscreen=1");
$.ajax({
type:'POST',
url:"http://localhost/webcrmstd/index.php?r=site/returntrue",
data:"",
success:function(){
winOp.location = "http://www.baidu.com";
window.opener=null;
window.open('','_self');
window.close();
},
dataType:"json",
});
</script>
转载于:https://my.oschina.net/resory/blog/95512