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

iOS-获取当前网页的 url 和 title 和 html

时间:2015-03-03 18:22:56      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:

本文转载至 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].networkActivityIndicatorVisible =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";//获取当前网页html  

   self.currentHTML = [webView stringByEvaluatingJavaScriptFromString:lJs];  

      

}  

iOS-获取当前网页的 url 和 title 和 html

标签:

原文地址:http://www.cnblogs.com/Camier-myNiuer/p/4311504.html

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