我试着这样做:
var a = []; // Global array
GM_xmlhttpRequest({
method: "GET",
url: 'http://server.com/page.php',
onload: function (response) {
a.push(response.responseText);
}
});
alert(a);
但是“a”是空的,我如何在onload函数中推入“a”数组?提前谢谢。