0
我希望能夠從嵌入式vimeo視頻訪問類。我的iframe如下:嵌入式文檔的訪問元素
HTML
<iframe id="vimeo" src="//player.vimeo.com/video/85509673?portrait=0&badge=0&color=a82a2a" width="500" height="281" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
我想要一個click事件添加到play-button-cell
類,像這樣:
jQuery的
var embeddedContent = $("#vimeo");
console.log(embeddedContent);
var doc = embeddedContent.contentDocument; // get the inner DOM
console.log(doc);
console.log(doc.jQuery(".play-button-cell"));
doc.jQuery(".play-button-cell").click(function(){
alert('ok!');
});
,我得到以下控制檯中的錯誤消息:
Uncaught TypeError: Cannot call method 'jQuery' of undefined
play-button-cell
確實存在,因爲我可以在播放按鈕上「檢查元素」時看到它。 如何訪問嵌入式內容中的類?這可能嗎?