1

我有这个代码:

function get_id_from_coords (x, y)
{
    x = parseInt(x);
    y = parseInt(y);

    if (x < 0)
    {
        x = (x + 6) * 60;
    }
    else
    {
        x = (x + 5) * 60;
    }
    if (y < 0)
    {
        y = (y + 6) * 60;
    }
    else
    {
        y = (y + 5) * 60;
    }

    $('#planets').children().each(function(){
        if ($(this).attr('x') == x) {
            if ($(this).attr('y') == y) {
                alert (parseInt($(this).attr('id')));
                return parseInt($(this).attr('id'));
            }
        }
    });
}
alert(get_id_from_coords(x, y));

但是,从这段代码中,我得到了两个弹出窗口:首先,从函数内部,我得到了正确的值(比如 63),但是当我提醒返回值时,我只是得到了未定义的值。

4

1 回答 1

6

你得到 undefined 因为你的函数没有返回 - 最后一个语句是对each函数的调用,它不是一个return语句。如果你把一个回报,例如

...
return $('#planets').children().each(function(){
    if ($(this).attr('x') == x) {
        if ($(this).attr('y') == y) {
            alert (parseInt($(this).attr('id')));
            return parseInt($(this).attr('id'));
        }
    }
});

它会返回一些东西 - 在这种情况下,基于文档:

它将返回#planets.

如果你想找到一些专门使用的价值each,那么你可以这样做:

...
val toRet;
$('#planets').children().each(function(){
    if ($(this).attr('x') == x) {
        if ($(this).attr('y') == y) {
            toRet = parseInt($(this).attr('id'));
        }
    }
});
return toRet;
于 2012-04-09T23:44:30.537 回答