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' } }
答案 0 :(得分:0)
试试这个
@font-face {
font-family: 'Glyphicons Halflings';
src: url(../fonts/glyphicons-halflings-regular.eot);
.....