拥有一个 youtube iFrame,我在 Sencha touch 中对它的控制非常有限。
所以这是我添加和初始化 youtube iframe 的代码:
this.player = {
xtype: 'panel',
id: "youtubeVideo",
styleHtmlContent : true,
html: '<iframe id="player" type="text/html" width="320" height="240" src="http://www.youtube.com/embed/' + youtubeid + '?enablejsapi=1" frameborder="0"></iframe>',
listeners:{
tap:{
element:'element',
fn: function () {
alert('hey')
console.log("I want to proceed with some events in here!!!")
}
}
}
}
this.add([this.player])
正如你所看到的,我尝试将点击功能附加到面板,这基本上应该启用一些自定义逻辑。
您能否让我知道收听 iframe Tap 的解决方案是什么?