$("script").each(function(){//删除  js.stripe.com/v3  脚本
      if($(this).attr("src") && $(this).attr("src").indexOf('js.stripe.com/v3') >= 0){
        $(this).remove();//删除该标签
      }
    });
    $("iframe").each(function(){//删除  js.stripe.com/v3脚本加载出来的 iframe标签
      if($(this).attr("src") && $(this).attr("src").indexOf('js.stripe.com/v3') >= 0){
        $(this).remove();//删除该标签
      }
    });

.

相关文章:

  • 2021-07-25
  • 2022-02-18
  • 2022-12-23
  • 2022-12-23
  • 2021-12-25
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-13
  • 2021-12-15
  • 2021-11-13
  • 2022-12-23
  • 2021-11-13
  • 2021-07-24
相关资源
相似解决方案