我希望jQuery在按下按钮时播放我的iframe视频
JS:
$(document).ready(function() {
$('#play').click(function() { //#play is the id of the button
$('#video').get(0).play(); //video id
});
});
我尝试用
代替视频ID$(' iframe中&#39)
无济于事。
答案 0 :(得分:1)
如果视频元素位于iframe
中$('iframe').contents().find('#video').get(0).play();
答案 1 :(得分:1)
以上建议都没有奏效。相反,做了什么:
$(document).ready(function ($) {
$('#play').click(function () {
$('#video video')[0].play(); //looking for the video element in the parent
});
});