0

所以我正在制作一个关于沙漠中幸存者的小游戏。幸存者在返回淘金鬼城的路上必须从散布在沙漠中的井里喝水。有些井可以饮用,但有些井是有毒的。我在具有“well”类的表的那些 TD 元素上显示工具提示。在工具提示的初始化对象中,我需要获取对当前 TD 元素的引用,因此我可以将它传递给设置工具提示的“内容”属性的函数。在该函数中,我必须测试当前 TD 是否也具有“中毒”类。

function initWellsTooltip() {
 $("#water-table tbody td.well").tooltip({

    content: function () {           
        var well$ = $( this );  // 
        // at this point stepping through the code in the debugger,
        // well$ is undefined and I don't understand why,
        // because $(this).hasClass("poisoned") succeeds.
        // VS2010 debugger shows as follows:
        //  ?$(this).hasClass("poisoned")
        //  true
        //  ?well$
        //  'well$' is undefined
        if (well$.hasClass("poisoned")) {
              return "poisoned!";
        } else {
            return "potable";
        }

    },
    items: "td.well",
    position: { my: "left+15 center", at: "left top" }

});
}
4

2 回答 2

2

由于td.wells 不止一个,因此您必须遍历它们以设置正确的well$

function initWellsTooltip() {
    $("#water-table tbody td.well").each(function() {
        var well$ = $(this);          

        well$.tooltip({
            content: function () {
                return well$.hasClass("poisoned") ? "poisoned!" : "potable";
            },
            items: "td.well",
            position: {
                my: "left+15 center",
                at: "left top"
            }
        });
    });
}
于 2013-09-14T13:16:26.140 回答
0

$(this)在那个时候不要指$("#water-table tbody td.well"). 因此,您需要将其更改$("#water-table tbody td.well")为如下所示的实例,

function initWellsTooltip() {
 var that = $("#water-table tbody td.well");
 that.tooltip({

    content: function () {           
        var well$ = that;  // 
        // at this point stepping through the code in the debugger,
        // well$ is undefined and I don't understand why,
        // because $(this).hasClass("poisoned") succeeds.
        // VS2010 debugger shows as follows:
        //  ?$(this).hasClass("poisoned")
        //  true
        //  ?well$
        //  'well$' is undefined
        if (well$.hasClass("poisoned")) {
              return "poisoned!";
        } else {
            return "potable";
        }

    },
    items: "td.well",
    position: { my: "left+15 center", at: "left top" }

});
}

希望这对您有所帮助。

于 2013-09-14T12:31:24.277 回答