转发器小部件 - jQuery 检测不起作用

Repeater Widget - jQuery detect does not work

下面的代码在 Laravel -> octobercms -> backend ->plugin -> form

中与 "repeater widget" 元素以外的其他表单元素一起工作
$(document).ready(function() {

       $('.form-control').on('mouseover',function(){
         alert('hi');
       });

})

当我将鼠标悬停在表单中的正常输入字段上时,我收到了警告消息。但是当我使用添加包含输入字段的转发器元素时,将鼠标悬停在它们上面不会触发警报。

请帮忙。

此致

尝试使用 event delegation。除非在您的代码运行之后添加元素,例如通过 ajax

,否则对于您的方法为何不起作用的了解还不够
$(document).on('mouseover','.form-control',function(){
     alert('hi');
});