我有这个 jQuery 代码
if (Meteor.isClient){
jQuery(document).ready(function(){
jQuery('#content .row > div').mouseenter( function(){
jQuery('#content .row div .edit').toggle();
});
jQuery('#content .row > div').mouseleave( function(){
jQuery('#content .row div .edit').toggle();
});
});
}
当我运行我的应用程序时,这不起作用。如果我将它放入 chrome 控制台,它会完美运行。有什么问题?
这也发生在不同的代码之前。