示例#1
0
 queue.enterEventLoop(function () {
     queue.shutdown();
 });
示例#2
0
文件: xhrtest.js 项目: wuher/groke
xhr.onreadystatechange = function () {
    if (xhr.readyState === 4) {
        print(xhr.responseText);
        eventq.shutdown();
    }
};