如何在Javascript中向变量参数函数添加额外的对象?

时间:2016-02-29 06:37:56

标签: javascript object arguments

P.S。:我不是问如何将函数传递给函数!我在询问如何在传递函数后添加参数。

我想将functionA作为变量传递给functionB,并在functionB中向functionA添加一个额外的对象。我怎么能这样做?

function functionA() {
    console.log( arguments );
}
function functionB( fn ) {
    fn( {
        c : 'extra object',
    });
}
functionB( function() {
    functionA( {
        a : 'foo',
        b : 'bar',
    })
});

这是结果:

{ '0': { a: 'foo', b: 'bar' } }

但我想要的是:

{ '0': { a: 'foo', b: 'bar', c: 'extra object' } }

1 个答案:

答案 0 :(得分:0)

试试这个

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../fonts/glyphicons-halflings-regular.eot);
.....