0

jquery 新手并试图让注入工作。任何帮助表示赞赏。

我有一个嵌入到父页面中的 iframe。从 iframe(我在其中实例化 jquery)中,我希望向该父页面中 class = "btn" 的所有 DOM 元素注入一个 'onmouseover' 事件处理程序。所有这些元素都位于 id = "contentWrapper" 的顶级容器 div 中的 div 级别

我假设它会类似于以下内容,但任何提示都非常欢迎为我指明正确的方向。

// 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 
});
4

1 回答 1

0

尝试这个

 parent.find('#contentWrapper .btn').on('onmouseover', function(event){ 
 // some activity here 
});
于 2013-02-19T11:32:56.207 回答