摘要: // 判断当前页面是否是顶层页面function topRecursion(page) { if (page == top) { return page; } else { return topRecursion(page.parent); }} 阅读全文
posted @ 2015-03-17 18:55 德玛西亚冲锋 阅读(251) 评论(0) 推荐(0) 编辑