javascript - Jquery each(): variable in callback always has last value? - Stack Overflow

Can't seem to figure out what's going on here.<div id="navigation"><ul id=

Can't seem to figure out what's going on here.

<div id="navigation">
    <ul id="navList">
        <li class="navItem"><a href=".html">Discover</a></li>
        <li class="navItem"><a href=".html">Documentation</a></li>
        <li class="navItem"><a href=".html">Download</a></li>
        <li class="navItem"><a href=".html">Donate</a></li>
    </ul>
    <script type="text/javascript">
        $('.navItem').each(function() {
            $link = $(this).children('a');
            $link.hover(
                function() {
                    $link.css('width', '224px');
                },
                function() {
                    $link.css('width', '192px');
                }
            )
        });            
    </script>
</div>

/

It should be doing it for each link, instead it only changes the last link no matter which one is being hovered over.

Can't seem to figure out what's going on here.

<div id="navigation">
    <ul id="navList">
        <li class="navItem"><a href="http://www.jacobsmits./placeholderRX.html">Discover</a></li>
        <li class="navItem"><a href="http://www.jacobsmits./placeholderRX/documentation.html">Documentation</a></li>
        <li class="navItem"><a href="http://www.jacobsmits./placeholderRX/download.html">Download</a></li>
        <li class="navItem"><a href="http://www.jacobsmits./placeholderRX/donate.html">Donate</a></li>
    </ul>
    <script type="text/javascript">
        $('.navItem').each(function() {
            $link = $(this).children('a');
            $link.hover(
                function() {
                    $link.css('width', '224px');
                },
                function() {
                    $link.css('width', '192px');
                }
            )
        });            
    </script>
</div>

http://jsfiddle/Sth3Z/

It should be doing it for each link, instead it only changes the last link no matter which one is being hovered over.

Share Improve this question edited Dec 10, 2011 at 23:30 user166390 asked Dec 10, 2011 at 23:20 ThrottleheadThrottlehead 1,9456 gold badges22 silver badges37 bronze badges 4
  • stackoverflow./questions/341723/… , stackoverflow./questions/6978911/… , stackoverflow./questions/5555464/javascript-closure-of-loop – user166390 Commented Dec 10, 2011 at 23:32
  • @pst - That is not the issue here. Did you read Rob's answer or run his fiddle? – Wayne Commented Dec 10, 2011 at 23:33
  • @pst - Clearly the OP intended the $link to be a local var. And clearly Rob answered correctly. – Wayne Commented Dec 10, 2011 at 23:36
  • @lwburk Just for you: stackoverflow./questions/1956698/… – user166390 Commented Dec 10, 2011 at 23:42
Add a ment  | 

3 Answers 3

Reset to default 12

Add var before $link: http://jsfiddle/Sth3Z/1/

    $('.navItem').each(function() {
        var $link = $(this).children('a');   // `var` added

Currently, you're declaring a global variable, which will be overwritten at each iteration in the loop.

why not

$('.navItem > a').hover(
    function() {
        $(this).css('width', '224px');
    },
    function() {
        $(this).css('width', '192px');
    }
);

?

http://jsfiddle/Sth3Z/2/

There is a better way of writing what u are trying to do:

$(".navItem a").hover(
    function() {
        $(this).css('width', '224px');
    },
    function() {
        $(this).css('width', '192px');
    }
);

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743664232a4486704.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信