解决方法
我遇到了同样的问题,通过将playinline和webkit-playsinline添加到网络应用的< video>来解决.标签:
<video src="foo.mp4" playsinline webkit-playsinline />
这是Apple推出的修复程序.对于iOS 10设备,playinline就足够了.对于iOS 8和iOS 9,两个标签都是必需的. iOS8以下的设备不支持HTML5视频.
webkit-playsinline: Indicates that a video element should play inline instead of full-screen. Enabled only in a UIWebView with the allowsInlineMediaPlayback property set to YES.