0

我正在尝试 slideDown() 一个隐藏的 div 但它只显示() 它而没有 slideDown() 效果。当我在 2-3 秒后突然显示按钮内容时,这是 js

var hash = window.location.hash.substr(1);
var href = $('#nav li a').each(function(){
    var href = $(this).attr('href');
    if(hash==href.substr(0,href.length-5)){
        var toLoad = hash+'.html #content';
        $('#content').load(toLoad)
    }                                           
});

$('#nav li a').click(function(){

    var toLoad = $(this).attr('href')+' #content_id1';
    $('#content').fadeOut(1000,loadContent);
    window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-5);
    function loadContent() {
        $('#content').load(toLoad,'',showNewContent())
    }
    function showNewContent() {
        $('#content').slideDown('normal');


    }
    return false;       
});

这是CSS

#content {width:934px;margin-top:238px;position:relative;height:500px;display:none;}
#content #content_id1{width:934px; background-color:white; height:500px; position:relative;top:4px;margin-top:238px;margin-bottom:50px;padding:20px;}

这是html

            <ul id="nav">
                <li>
                  <a href="products/rania.php"><img src="img/products/1.jpg"/></a>
                </li>
                <li class="under">
                 <a href="products/lutron.php"><img src="img/products/2.jpg"/></a>
                </li>

            </ul>

            <div id="content">   </div>
4

1 回答 1

0

阅读jQuery 的 API关于slideDown(). 哪里没有参数 as normal,duration 应该是数值 or slow, or fast

于 2013-03-12T11:52:10.347 回答