博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS-获取当前网页的 url 和 title 和 html
阅读量:5161 次
发布时间:2019-06-13

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

本文转载至 http://www.th7.cn/Program/IOS/201310/156916.shtml

 
@property (strong,nonatomic)UIWebView *webView;  

@property (strong,nonatomic)NSString *currentURL;  

@property (strong,nonatomic)NSString *currentTitle;  

@property (strong,nonatomic)NSString *currentHTML;  

-(void) webViewDidFinishLoad:(UIWebView *)webView {  

  

    [UIApplicationsharedApplication]workActivityIndicatorVisible =NO;  

    self.title =  [webViewstringByEvaluatingJavaScriptFromString:@"document.title"];//获取当前页面的title  

      

   self.currentURL = webView.request.URL.absoluteString;  

    NSLog(@"title-%@--url-%@--",self.title,self.currentURL);  

  

   NSString *lJs = @"document.documentElement.innerHTML";//获取当前  

   self.currentHTML = [webView stringByEvaluatingJavaScriptFromString:lJs];  

      

}  

转载于:https://www.cnblogs.com/Camier-myNiuer/p/4311504.html

你可能感兴趣的文章
查询当天、本周、本月记录
查看>>
ABAP学习之旅——多种方式建立模块化功能
查看>>
Android 音频的播放之二MediaPlayer
查看>>
leetCode(38):Lowest Common Ancestor of a Binary Search Tree
查看>>
PixelUtils:像素转换工具
查看>>
Python基础学习07--字典
查看>>
hyxzc_背包九讲课件
查看>>
【转载】淡出微信
查看>>
Selenium自动化-入门1
查看>>
MyBatis动态SQL————MyBatis动态SQL标签的用法
查看>>
执行shell脚本的三种方式
查看>>
c# dotNetBar symbol属性代码动态设置方法
查看>>
Git 迁库 标签
查看>>
Java 返回一个整数的各个数字之和的一种方法
查看>>
前端基础-BOM和DOM学习
查看>>
DW: dwscriptsExtData.js,ReferenceError dwscripts is not defined
查看>>
Python random模块
查看>>
ruby中的顶层方法
查看>>
FFPLAY的原理
查看>>
Javascript基于对象三大特征 -- 冒充对象
查看>>