我在AEM中添加了一个jquery插件
当我在控制台上运行代码时,它可以工作
但不是在我向js文件中添加相同的行时。
会出现什么问题?
答案 0 :(得分:0)
您可以将任何Jquery函数/事件插入到AEM页面。 Helpx文章: - https://helpx.adobe.com/experience-manager/using/custom-carousel-components.html //为Adobe Experience Manager创建自定义轮播组件您可以在这里学习与第三方javaScript或JQuery集成。
如: -
$(window).load(function() {
// executes when complete page is fully loaded, including all frames, objects and images
alert("window is loaded");
});
OR
$(document).on("pageload",function(){
alert("pageload event fired!");
});
Adobe AEM社区的参考文章: http://help-forums.adobe.com/content/adobeforums/en/experience-manager-forum/adobe-experience-manager.topic.html/forum__6l3s-i_would_liketocrea.html
我希望这会对你有所帮助。
谢谢和问候
Kautuk Sahni