ios webview 加载含有中文的URL网页显示白屏
1. ios中的webview加载的URL不可以含有中文,解决办法说将中文字符转码,
如下:
- (NSString *)URLEncodeString { NSCharacterSet *set = [NSCharacterSet URLQueryAllowedCharacterSet]; NSString *encodedString = [self stringByAddingPercentEncodingWithAllowedCharacters:set]; return encodedString; }
2.window.location.href webkit不兼容
window.event.returnValue = false;
在location.href后加上后修复。