UIWebView的HTML页面 - html/css语言栏目:html.css - 自

最近在做一些hybird框架的项目,对于embed的UIWebView,其宽度一般由Native app 指定,对于HTML页面

 

[html] 
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> 

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">


其中若是width指定为device-width,那么embed的UIWebView的宽不应设置小于device-width的值,如ipad的宽为768

 

 

在webView中查看HTML页面源代码

[cpp] 
- (void)webViewDidFinishLoad:(UIWebView *)webView_ { 
    NSString *jsToGetHTMLSource = @"document.getElementsByTagName('html')[0].innerHTML"; 
    NSString *HTMLSource = [webView_ stringByEvaluatingJavaScriptFromString:jsToGetHTMLSource]; 
    NSLog(@"%@",HTMLSource); 

返回顶部
跳到底部

Copyright 2011-2024 南京追名网络科技有限公司 苏ICP备2023031119号-6 乌徒帮 All Rights Reserved Powered by Z-BlogPHP Theme By open开发

请先 登录 再评论,若不是会员请先 注册