美文网首页
删除广告

删除广告

作者: Hyman0819 | 来源:发表于2016-10-27 15:32 被阅读17次

    第一种写法:(隐藏)

    [webView stringByEvaluatingJavaScriptFromString:@"document.getElementById('down-footer')[0].style.display='none'"];


    第一种写法:(移除)

    [webView stringByEvaluatingJavaScriptFromString:@"document.getElementById('down-footer').remove()"];


    第一种写法:(Jquery隐藏)

    [webView stringByEvaluatingJavaScriptFromString:@"$('#down-footer')[0].style.display='none'"];


    第一种写法:(Jquery移除)

    [webView stringByEvaluatingJavaScriptFromString:@"$('#down-footer').remove()"];

    相关文章

      网友评论

          本文标题:删除广告

          本文链接:https://www.haomeiwen.com/subject/zbtsuttx.html