iphone浏览器上的以下代码有什么问题?

时间:2013-06-05 07:56:33

标签: javascript jquery html css background-image

我使用jQueryCollapse插件来显示问题和答案。 问题写在选项卡上,单击选项卡时会显示答案。 当标签处于活动状态时表示当页面高度增加时显示答案,因此我必须增加背景图像的高度。 为此,我编码如下:

<script type="text/javascript">
$(document).ready(function(){
    $('#main-content1').height(1450);
    $("#t1").click(function(){
        var height = 1450;
        $('#main-content1').height(height);
    });
    $("#t2").click(function(){
        var height = 1450;
        $('#main-content1').height(height);
    });
    $("#t3").click(function(){
        var height = 1275;
        $('#main-content1').height(height);
    });
    $("#t4").click(function(){
        var height = 1250;
        $('#main-content1').height(height);
    });
</script>

id main-content的CSS代码如下:

#main-content1 {
    margin-left:auto;
    margin-right:auto;
    margin-top:35px;
    width:900px;

    border-top-left-radius:48px;
    border-top-right-radius:48px;
    border-bottom-left-radius:48px;
    border-bottom-right-radius:48px;
    padding-bottom:20px;
    height:1450px;
    background:url(res/back-img.png) repeat;
}

页脚代码如下:

#footer {
    border-top: 0px solid #003366;
    overflow:visible;
}

.foot {
    float:left; 
    list-style-type:none;
    margin-bottom:20px;
    background-image:url(res/footer_back.png);
    background-repeat:no-repeat;
    overflow:visible;
    margin-top:-50px;
    background-position:0px 120px;
    width:182px;
    height:180px;
}

img {
    border-color:transparent;   
}

#site-footer {
    width:728px;
    margin-left:auto;
    margin-right:auto;
}

当我单击选项卡时,它会显示答案,但不会根据iphone移动浏览器上的jquery代码增加其背景图像高度。但它在Windows PC浏览器上工作正常。 内容落后于页脚。 我非常喜欢谷歌,但我没有得到如何解决这个问题。 请任何人帮我解决这个问题。 提前谢谢..

1 个答案:

答案 0 :(得分:0)

尚未测试,但请尝试使用max-height而不是height /或auto height。

CSS

#main-content1 {
    margin-left:auto;
    margin-right:auto;
    margin-top:35px;
    width:900px;

    border-top-left-radius:48px;
    border-top-right-radius:48px;
    border-bottom-left-radius:48px;
    border-bottom-right-radius:48px;
    padding-bottom:20px;
    max-height:1450px; /* height:auto; */
    background:url(res/back-img.png) repeat;
}