码迷,mamicode.com
首页 > Web开发 > 详细

wkWebView 或者 webView 在客户端隐藏某些布局的方法

时间:2018-07-26 18:40:39      阅读:485      评论:0      收藏:0      [点我收藏+]

标签:doc   img   http   代码   splay   class   eval   javascrip   script   

首先 我们需要拿到我们需要操作的H5的布局代码(可以根据className 或者其他的 唯一ID标识)

比如 

技术分享图片

这段代码中 我们可以根据  <footer class="published text-center"> 中的 published text-center 这个 使用 document.getElementsByClassName(‘published text-center‘) 拿到这一部分的UI设置

然后 使用

NSString * logoStr = @"document.getElementsByClassName(‘published text-center‘)[0].style.display=‘none‘"  来设置UI隐藏 

 

最后 我们 调用 

- (void)evaluateJavaScript:(NSString *)javaScriptString completionHandler:(void (^ _Nullable)(_Nullable id, NSError * _Nullable error))completionHandler;

这个方法 将logoStr 传入进去 就可以实现了

 

另外 我们可以在block 中做一些 其他的 我们想做的操作

 

 

wkWebView 或者 webView 在客户端隐藏某些布局的方法

标签:doc   img   http   代码   splay   class   eval   javascrip   script   

原文地址:https://www.cnblogs.com/LoveStoryJX/p/9372895.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!