在KickApps支持的站点上移动模块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在KickApps支持的站点上移动模块相关的知识,希望对你有一定的参考价值。
In this example below I am moving the "recent blogs" module in "My Home" to the very top. I have placed this code in the footer of my Affiliate Center wrapped in script tags.For maximum efficiency:
1) Use the inspect tool in Firebug to find the main container you want to move (the element that's wrapping around the content you want to move).
2) Find the ID of the element you want to insert into, after, or before.
3) Write your code like below. Instead of using .insertBefore, you can use any of the options on this page under "insert outside" and "insert inside": http://docs.jquery.com/Manipulation#bodyContent
4) Don't forget to wrap your code around an if statement to target the specific page(s) only so that your code doesn't run on your other KickApps pages.
--
For more tips and tricks checkout the <a href="http://www.kickdeveloper.com/resources">KickApps resources page</a>.
// move "blogs module" to top of page when on "My Home" if (Ka.Info.PAGE === "pages/myPlace.jsp"){ //move Most Recent Blog Posts to the top $j('#ka_newBlog').insertBefore('#ka_getActive'); }
以上是关于在KickApps支持的站点上移动模块的主要内容,如果未能解决你的问题,请参考以下文章