静态的html,怎么共用头部和尾部?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了静态的html,怎么共用头部和尾部?相关的知识,希望对你有一定的参考价值。
不要用那种iframe 的.谢谢
参考技术A 用包含文件<!include--(+含有头代码的文件名)>iOS tableView不让头部和尾部跟随
-(void)scrollViewDidScroll:(UIScrollView *)scrollView { UITableView *tableview = (UITableView *)scrollView; CGFloat sectionHeaderHeight = AutoWHGetHeight(50); CGFloat sectionFooterHeight = AutoWHGetHeight(0); CGFloat offsetY = tableview.contentOffset.y; if (offsetY >= 0 && offsetY <= sectionHeaderHeight) { tableview.contentInset = UIEdgeInsetsMake(-offsetY, 0, -sectionFooterHeight, 0); } else if (offsetY >= sectionHeaderHeight && offsetY <= tableview.contentSize.height - tableview.frame.size.height - sectionFooterHeight) { tableview.contentInset = UIEdgeInsetsMake(-sectionHeaderHeight, 0, -sectionFooterHeight, 0); } else if (offsetY >= tableview.contentSize.height - tableview.frame.size.height - sectionFooterHeight && offsetY <= tableview.contentSize.height - tableview.frame.size.height) { tableview.contentInset = UIEdgeInsetsMake(-offsetY, 0, -(tableview.contentSize.height - tableview.frame.size.height - sectionFooterHeight), 0); } }
以上是关于静态的html,怎么共用头部和尾部?的主要内容,如果未能解决你的问题,请参考以下文章
AngularJS中ng-include指令实现头部和尾部的共用