阿波羅的戰(zhàn)車
2021-10-14 14:24:46
我們正在使用 Moodle 3.5 版并使用 H5P 插件制作交互式視頻。我們需要在提交按鈕上添加另一個操作請檢查鏈接https://h5p.org/interactive-video?;卮饐栴}后,會出現(xiàn)如下摘要屏幕:<script>function checkclick(){ $(document).ready(function(){ $(".h5p-interactive-video-endscreen-submit-button").click(function(){ alert("submitted"); }); });}$(document).ready(function(){ iframe=H5P.$body.contents(); iframe.find(".h5p-interactive-video-endscreen-submit-button").click(function(){ alert("hello"); });});// H5P.$body.contents().find(".h5p-interactive-video-endscreen-submit-button")// $(document).ready(function(){// var button= H5P.$body.contents().find(".h5p-interactive-video-endscreen-submit-button");// button.attr("id","myclass");// console.log(button);// });</script>已嘗試上述技術(shù)以在單擊按鈕時獲得警報但沒有成功。
2 回答

白板的微信
TA貢獻1883條經(jīng)驗 獲得超3個贊
改變這個:
$(document).ready(function(){
iframe=H5P.$body.contents();
iframe.find(".h5p-interactive-video-endscreen-submit-button").click(function(){
alert("hello");
});
});
對此:
$(document).ready(function(){
iframe=H5P.$body.contents();
$(document).on('click',function(){
if(iframe.find(".h5p-interactive-video-endscreen-submit-button").is(":hover")){
alert('hello');
}
});
});
如果無法檢測到元素點擊并且它有效,我通常會這樣做。
添加回答
舉報
0/150
提交
取消