javascript设置overflow-y

来源:互联网 发布:ug10.0安装java虚拟机 编辑:程序博客网 时间:2024/05/16 05:25

http://blog.csdn.net/jasper_success/article/details/6786733

 

css里可以设置overflow-y:scroll

但是javascript中应这样设置 overflowY:scroll

比如,显示博文的时候超过规定高度就让其显示滚动条,代码如下

$(function(){
    var height = document.getElementById("blogcontent").clientHeight;
    if(height>1500){
        document.getElementById("blogcontent").style.height="1000px";
        document.getElementById("blogcontent").style.overflowY="scroll";
        
    }
});

原创粉丝点击