3

http://jsfiddle.net/MeoMix/8zg2V/83/

我有以下 jsFiddle。这个想法是,当显示一个太长的上下文菜单项时,它会以省略号呈现,但在鼠标悬停时它会平移文本。

有问题的代码:

//Provides helper methods for non-specific functionality.
define('helpers', [], function () {
    'use strict';

    return {
        scrollElementInsideParent: function(element, parent) {
            //  Scroll the element if its too long to read.
            $(element).mouseover(function () {

                var distanceToMove = $(this).width() - $(parent).width();

                console.log("My width and parent width:", $(this).width(), $(parent).width());

                $(this).animate({
                    marginLeft: "-" + distanceToMove + "px"
                }, {
                    //  Just a feel good value; scales as the text gets longer
                    duration: 15 * distanceToMove,
                    easing: 'linear'
                });

            }).mouseout(function () {
                $(this).stop(true).animate({ marginLeft: 0 });
            });
        }
    };

在这里,我记录了正在滚动的元素的宽度及其父元素的宽度。控制台输出:

我的宽度和父宽度:360 230

但这在查看指标时似乎不正确:

在此处输入图像描述

为什么是这样?

4

1 回答 1

6

在您的代码中,parent参数指的是<ul>. 用于$(this).parent()获取<li>

演示:http: //jsfiddle.net/EsL2X/

于 2013-07-18T16:14:05.400 回答