0

编辑: 我怎样才能return为父母设定价值function

function returningFn() {
    function otherFn() {
        var value = 123;
        return value; //For returningFn     
    }
}

我想returningFn退货value...我该怎么做???我无法让它工作...

4

2 回答 2

4
function returningFn(returnInfo) {
    function otherFn() {
        var value = 123;
        return value;  //return the value
    }
    return otherFn();  //call the function which has its own return statement
}   
console.log( returningFn() );

JSFiddle

于 2012-06-12T16:56:29.197 回答
3
function returningFn() {
    function otherFn() {
        var value = 123;
        return value; //For returningFn     
    }
    return otherFn();
}

你以前没有引用正确的东西。当 JS 函数返回某些内容时,您可以将函数调用视为它返回的内容,以便您可以:

alert(returningFn());
于 2012-06-12T16:56:59.183 回答