博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS开发 - 利用js去除webview广告
阅读量:6592 次
发布时间:2019-06-24

本文共 1766 字,大约阅读时间需要 5 分钟。

找到要取出内容方法:

浏览器设置 -> 更多工具 -> 开发者工具 -> 手机模式(左下角 手机按钮)
点击手机图标左边那个搜索框 -> 然后点击你要隐藏的控件
选择到你要选择到的控件 -> 然后左下角代码就被选中了.
其中右下角中是这个控件对应的css代码,在其中添加一行display:none,这时这个选中的控件就被隐藏起来了.但是我们主要通过javascript去操作这个控件
选择除掉内容

利用js去除webview广告

最后代码如下:

////  MainViewController.m//  webview////  Created by ??? on 15/11/24.//  Copyright © 2015年 ???. All rights reserved.//#import "MainViewController.h"@interface MainViewController ()
@property (nonatomic,strong)UIWebView *webView;@end@implementation MainViewController- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. [self webView];}- (UIWebView *)webView{ if (!_webView) { NSString *urlStr = @"http://group.haodou.com/topic-327282.html"; self.webView = [[UIWebView alloc] initWithFrame:self.view.bounds]; self.webView.delegate = self; self.webView.backgroundColor = [UIColor redColor]; [self.view addSubview:_webView]; NSURL *url=[NSURL URLWithString:urlStr]; NSURLRequest *request=[[NSURLRequest alloc] initWithURL:url]; [self.webView loadRequest:request]; } return _webView;}- (void)webViewDidFinishLoad:(UIWebView *)webView{ [webView stringByEvaluatingJavaScriptFromString:@"document.getElementsByClassName('main_mu_bar')[0].style.display = 'NONE'"];}- (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated.}/*#pragma mark - Navigation// In a storyboard-based application, you will often want to do a little preparation before navigation- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { // Get the new view controller using [segue destinationViewController]. // Pass the selected object to the new view controller.}*/@end

转载地址:http://jkuio.baihongyu.com/

你可能感兴趣的文章
JAVA中的编码分析
查看>>
查看源代码Source not found及在eclipse中配置jdk的src.zip源代码
查看>>
document.all用法
查看>>
uniGUI试用笔记(二)
查看>>
HOG特征-理解篇
查看>>
Microsoft.AlphaImageLoader滤镜解说
查看>>
extjs_02_grid(显示本地数据,显示跨域数据)
查看>>
超过响应缓冲区限制
查看>>
ubuntu 下安装 matplotlib
查看>>
webservice的几个简单概念
查看>>
underscore 1.7.0 api
查看>>
C# CheckedListBox控件的使用方法
查看>>
spring Transaction Management --官方
查看>>
iOS开发-清理缓存功能的实现
查看>>
IS_ERR、PTR_ERR、ERR_PTR
查看>>
html5 canvas 奇怪的形状垂直渐变
查看>>
mac java环境
查看>>
lamp 一键安装
查看>>
SQL Server 2008 收缩日志(log)文件
查看>>
UICollectionView基础
查看>>