jquery的新手并试图让注射工作。任何帮助表示赞赏。
我将iframe嵌入到父页面中。在iframe(我实例化jquery)中,我希望在该父页面中向class =“btn”的所有DOM元素注入一个'onmouseover'事件处理程序。所有这些元素都位于顶级容器div中的div级别,id =“contentWrapper”
假设它会像下面那样,但任何提示真的很受欢迎,指出我正确的方向。
// am assuming I can see <div id='contentWrapper'> element in parent frame from within the iframe
// not sure where to place the 'btn' class reference.
$('contentWrapper').on('onmouseover', function(event){
// some activity here
});
答案 0 :(得分:0)
试试这个
parent.find('#contentWrapper .btn').on('onmouseover', function(event){
// some activity here
});