Phantomjs-onloadstarted

提供:Dev Guides
移動先:案内検索

PhantomJS-onLoadStarted()

このコールバックは、ページの読み込みが開始されるときに呼び出されます。

構文

その構文は次のとおりです-

wpage.onLoadStarted = function() {}

var wpage = require('webpage').create();
wpage.onLoadStarted = function() {
   console.log('File has started Loading');
}
wpage.open("http://localhost/tasks/filel", function(status) {
   console.log(status);
});

上記のプログラムは、次の output を生成します。

File has started Loading
Success