iPhone開發--即時擷取UIWebView中的html內容

來源:互聯網
上載者:User

在網上找到了通過運行javascript指令碼得到網頁的html內容的方法:

擷取所有html:


[cpp] NSString *lJs = @"document.documentElement.innerHTML"; 
NSString *lJs = @"document.documentElement.innerHTML";

擷取網頁title:


[cpp] NSString *lJs2 = @"document.title"; 
NSString *lJs2 = @"document.title";

在WebView中使用的情況如下:


[cpp] UIWebView *lWebView = [self getCurrentWebView]; 
NSString *lHtml1 = [lWebView stringByEvaluatingJavaScriptFromString:lJs]; 
NSString *lHtml2 = [lWebView stringByEvaluatingJavaScriptFromString:lJs2]; 
UIWebView *lWebView = [self getCurrentWebView];
NSString *lHtml1 = [lWebView stringByEvaluatingJavaScriptFromString:lJs];
NSString *lHtml2 = [lWebView stringByEvaluatingJavaScriptFromString:lJs2];


如果想查看更詳細的擷取webview中的內容,請查看:

http://www.bkjia.com/kf/201202/120198.html

但是上面的解決辦法,不能完全符合我的要求,我想是即時擷取WebVIew中html的內容。上面的辦法只能在WebView初始化的時候擷取html內容。

於是呼找到了偉大的stackoverflow。解決辦法如下:

使用UIWebViewDelegate協議,並在你的delegate中實現如下的方法:


[cpp] <span style="font-size:18px;">- (void)webViewDidFinishLoad:(UIWebView *)webView</span> 
<span style="font-size:18px;">- (void)webViewDidFinishLoad:(UIWebView *)webView</span>

注意:要設定:www.2cto.com


[cpp] <span style="font-size:18px;">webView.delegate = self;</span> 
<span style="font-size:18px;">webView.delegate = self;</span>

參考自:http://stackoverflow.com/questions/1662565/uiwebview-finished-loading-event


摘自 zcl369369的專欄

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.