3

我正在尝试使用 jQuery 在 HTML 中查找对象。

function getHats() {
    $.get('http://www.roblox.com/User.aspx?ID=1',
        function parse(data) {
            var id1 = $(data).find('#ctl00_cphRoblox_rbxUserAssetsPane_UserAssetsDataList_ctl09_AssetThumbnailHyperLink');
            hatname1 = id1.attr('title');
            hatlink1 = "http://www.roblox.com" + id1.attr('href');
            hatpic1 = id1.find('img').attr('src');
            var lim1 = id1.parent('.AssetThumbnail').find('div');
            if(!lim1) {
                hatlim1 = true;
                alert("Null")
            }else{
                hatlim1 = false;
            };
        }
    );
};

它总是弹出警报。

4

2 回答 2

6

使用长度 - 但您不必明确说明:

if (lim1.length) {
    // lim1 has a length! And it's not 0!
} else {
    // arg, lim1 has a length of 0
}

等效地,否定运算符!将正常工作。

if (!lim1.length) {
    // arg!
}
于 2012-06-12T02:16:35.387 回答
3

在这种情况下,您可以使用length.

if(lim1.length < 1){
    //alert 
}
于 2012-06-12T02:14:54.857 回答