h5在header里加了下面的代碼還是不起作用(主要是?user-scalable=no)
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
方案1.如果這個(gè)界面不需要放大寞奸,那iOS這邊可以注入js代碼(弊端:如果你h5界面是共用的田绑,用到加載pdf的時(shí)候 應(yīng)該沒(méi)法放大查看了)
NSString *jScript = @"var script = document.createElement('meta');script.name = 'viewport';script.content='width=device-width,user-scalable=no';document.getElementsByTagName('head')[0].appendChild(script);";
?WKUserScript *wkUScript = [[WKUserScript alloc] initWithSource:jScript injectionTime:WKUserScriptInjectionTimeAtDocumentEnd forMainFrameOnly:YES];
WKUserContentController * wkUController = [[WKUserContentController alloc] init];
[wkUControlleraddUserScript:wkUScript];
WKWebViewConfiguration * wkWebConfig = [[WKWebViewConfiguration alloc] init];?
wkWebConfig.userContentController= wkUController;
_webView = [[WKWebView alloc] initWithFrame:self.view.bounds configuration:wkWebConfig];
方案2:從放大原因出發(fā),導(dǎo)致頁(yè)面自動(dòng)縮放的問(wèn)題原因:ios在小屏設(shè)備(5s/6/6s/7/8...)上點(diǎn)擊輸入框的時(shí)候踱侣,假如input字體小于16px的時(shí)候會(huì)自動(dòng)放大頁(yè)面,來(lái)提升閱讀性。
所以你需要把輸入框的字體改成16px以上就會(huì)解決修己。修改input的fontSize。
如果字體無(wú)法更改迎罗,可以看看https://my.oschina.net/u/4357584/blog/3345715的解決方案睬愤。