高山_流水
海阔凭鱼跃,天高任鸟飞
<body>
<div id="divc" style="overflow: auto;">
</div>
<a id="btn" class="btn" onclick="sub();" href="#">提交</a>

<script type="text/javascript">
$(function(){
    //设置自适应高度
    var height = window.screen.height-110;
    $("#divc").css("height", height);//通过设置CSS属性来设置元素的高
})
</body>

作用描述:div内的内容自动滚动,提交按钮始终处于页面最下方。

按钮的css样式:

.btn{display: block;position: fixed; bottom: 0; background: #00a0ea; height: 40px;line-height:40px; text-align: center;font-size: 20px;color: #FFF;width: 100%;text-decoration:none; z-index:9999;}

posted on 2017-03-01 19:46  高山_流水  阅读(3255)  评论(0编辑  收藏  举报