English 中文(简体)
页: 1 在<标题>上做些什么?
原标题:jQuery doesn t work in <head>?

该法典应使微薄的缩略语摆脱被束缚的表象(我对特别安全局发表了评论,以便我能够看到正在做的事情),把最首要的内容推到只看上去,然后把最重的元素和其余部分化为新内容。 如果我把文字放在<条码>和代号;人与人;内,并删除<条码>(功能){,则行文完全是细微的,但载于<条码>和t;head>则无所作为。 我昨天写过这封信,今天我仍然看不到这个错误,因此我在这里说话。

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <style type="text/css">
        ul {
            position: relative;
        }
        ul li {
            /*position: absolute;
            left: 0;
            top: 0;*/
        }
    </style>
    <script src="jquery-1.5.1.min.js" type="text/javascript"></script>

    <script type="text/javascript">
        $(function() {
            var i = 0;
            var count = $( ul li ).size();      

            function fade() {
                if (i < count-1) {
                $( ul li:nth-child( +(count-i)+ ) ).fadeOut(300);
                    i++;
                } else {
                    $( ul li:nth-child( +count+ ) ).fadeIn(300, function(){$( ul li ).show();});    
                    i = 0;
                }
            }

            $( button ).click(function() {
                setInterval( fade() , 1000);
            });
        });
    </script>
</head>

<body>
    <button>Slideshow GO!</button>
    <ul id="slider">
        <li><img src="1.jpg" /></li>
        <li><img src="2.jpg" /></li>    
        <li><img src="3.jpg" /></li>
        <li><img src="4.jpg" /></li>
    </ul>
</body>
</html>

增 编

最佳回答

不同的是,在<代码>(功能({})内总结你的代码,产生<代码>f功能,宣布 / locally,而不是Globally.setout<>>>>>/code>,评价全球范围< fade>(),从而可以发现这一功能。

给出<条码>准时的做法通常是错误的。 a 指明任何途径,以职能协调人取代:

setTimeout(fade, 1000);

不久前,我回答了一个类似的问题:here,但这个问题也有赖于从设定时间获得当地变量。

问题回答

j方案的基本途径是将所有电离层系统使用代码(文件)附在活动手里。 • 编辑:

var i = 0;
var count;

function fade() {
    if (i < count-1) {
        $( ul li:nth-child( +(count-i)+ ) ).fadeOut(300);
            i++;
        } else {
            $( ul li:nth-child( +count+ ) ).fadeIn(300, function(){$( ul li ).show();});    
            i = 0;
        }
    }
}

$(document).ready(function() {
    count = $( ul li ).size();
    $( button ).click(function() {
        setInterval( fade() , 1000);
    });
} );

请注意,一、计数和点数在校正之外申报,因为它们的范围是全球性的。 这一点至关重要,因为你的固定间隔手需要全球提供。

贵格会的一个巨大优势是,无论你制定你的法典,都保证在你应该的时候执行。 (文件) 在装满整个电离层树木之前,即可赢得树脂,从而确保你所提到的所有元素在进入时都能获得。

如果你开张 Java典,你会告诉你,确切的问题是:

fade is not defined
setInterval( fade() , 1000); 

相反:

    $(function() {
        var i = 0;
        var count = $( ul li ).size();      


        $( button ).click(function() {
            setInterval(function(){
                if (i < count-1) {
                $( ul li:nth-child( +(count-i)+ ) ).fadeOut(300);
                    i++;
                } else {
                    $( ul li:nth-child( +count+ ) ).fadeIn(300, function(){$( ul li ).show();});    
                    i = 0;
                }
            }, 1000);
        });
    });

难以正确使用<代码>Interval中的密码。





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签