一、window.open如何进行hack

网上看的办法很多,归根接地还是不能解决掉,只有通过a标签的target属性

$obj.click(function(){
 var newTab=window.open('about:blank');
 $.ajax({
  success:function(data){
   if(data){
    //window.open('http://isv.suningcloud.com/mpisv-web/index');
    newTab.location.href="http://isv.suningcloud.com/mpisv-web/index";
   }
  }
 })
})

 

相关文章:

  • 2022-02-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-03
  • 2022-01-23
  • 2021-06-15
  • 2022-12-23
猜你喜欢
  • 2021-07-09
  • 2022-12-23
  • 2022-12-23
  • 2022-02-20
  • 2021-05-29
  • 2022-12-23
相关资源
相似解决方案