新浪SAE去掉实名认证提示

原创
2016/10/14 11:08
阅读数 238

根据实际情况更改选择器

在自己的脚本中加上一个timer。

setTimeout(function(){
  clearInterval(0);
  clearInterval(1);
  clearInterval(2);
  clearInterval(3);

  try{
    $('#app~div').css('display','none');
  }catch(e){
    console.log(e);
  }
  try{
    $('#app~div').style.display='none';    
  }catch(e){
    console.log(e);
  }

},500);
展开阅读全文
加载中

作者的其它热门文章

打赏
0
0 收藏
分享
打赏
0 评论
0 收藏
0
分享
返回顶部
顶部