如何将第二个参数传递给地理定位成功函数?

时间:2014-02-26 05:13:21

标签: javascript html html5 geolocation

这就是我想做的事情:

navigator.geolocation.getCurrentPosition( wallEventByCat( variable, position ), handle_errors );

为了进行这种回调:

function wallEventByCat( position, category )
{
}

这可行吗?如果有,怎么样?

由于

1 个答案:

答案 0 :(得分:3)

你应该使用匿名函数,如:

navigator.geolocation.getCurrentPosition( function(position){
     wallEventByCat( variable, position );
}, handle_errors );