我在访问 ajax 后回调函数中的其他函数时遇到问题。
看看这段代码:
function HelloWorld(){
var x = 'Hello';
return x;
}
console.log( HelloWorld() ); // this works fine.
$('#newPost').click( function(){
$.post('url', { somedata }, function( data ){
console.log( HelloWorld() );
// this does not work.
// Error: functions not defined.
});
});
我怎样才能访问其他功能?