想问下大家做视频插入外部视频用的什么方式
我用的iframe, video
但是在mobile模式视频不能播放
在pc模式却能播放
求解为什么,是那里写错了吗
v2
目前情况是在safari里面可以播放,在chrome里面不行,chrome提示Uncaught (in promise) DOMException: Failed to load because no supported source was found
code:
.d-video(v-if="section.type !== 'text'")
.d-iframe
iframe(
:src="'/html/tttt/video_player.html?source=' + encodeURIComponent(section.source) + '&videoId=' + encodeURIComponent(section.videoId)"
frameborder="0"
scrolling='no'
width="100%"
height="100%")
mobile模式
pc模式
我也是优酷的iframe在pc可以,但是手机端就不行。。。。同求解答方法。