2016-06-10 56 views
0
加載後運行的功能

我添加了一個jQuery插件來AEM如何整個頁面在AEM

當我在控制檯上運行的代碼它的工作原理

但不是當我一樣行添加到JS文件。

會有什麼問題?

+0

你把它的document.ready或document.onLoad內? – rakhi4110

+2

[如何在AEM中運行外部js插件函數]可能的重複(http://stackoverflow.com/questions/37743567/how-to-run-external-js-plugin-function-in-aem) –

回答

0

您可以將任何Jquery函數/事件插入到您的AEM頁面。 Helpx文章: - https://helpx.adobe.com/experience-manager/using/custom-carousel-components.html //爲Adobe Experience Manager創建自定義輪播組件在這裏,您可以學習與第三方的javaScript或JQuery集成。

,如: - 的Adobe AEM社區

$(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!"); 
}); 

參考文章:http://help-forums.adobe.com/content/adobeforums/en/experience-manager-forum/adobe-experience-manager.topic.html/forum__6l3s-i_would_liketocrea.html

我希望這會幫助你。

感謝和問候

Kautuk薩尼