- 檔案系統模組
- PhantomJS - 屬性
- PhantomJS - 方法
- 系統模組
- PhantomJS - 屬性
- Web 伺服器模組
- PhantomJS - 屬性
- PhantomJS - 方法
- 其他
- 命令列介面
- PhantomJS - 螢幕截圖
- PhantomJS - 頁面自動化
- PhantomJS - 網路監控
- PhantomJS - 測試
- PhantomJS - REPL
- PhantomJS - 示例
- PhantomJS 有用資源
- PhantomJS - 快速指南
- PhantomJS - 有用資源
- PhantomJS - 討論
PhantomJS - evaluateAsync()
此方法在不阻止當前執行的情況下,非同步地在頁面內評估給定的函式。此函式有助於非同步執行某些指令碼。
evaluateAsync 方法將引數作為函式,第二個引數以毫秒為單位表示時間。這是在函式執行之前所需的時間。此函式沒有任何返回值。
語法
其語法如下 -
evaluateAsync(function, [delayMillis, arg1, arg2, ...])
例子
我們來看一個 evaluateAsync() 方法的示例。
var wpage = require('webpage').create();
wpage.onConsoleMessage = function(str) {
console.log(str);
}
wpage.open("https:///tasks/content.html", function(status) {
wpage.evaluateAsync(function() {
console.log('Hi! I\'m evaluateAsync call!');
}, 1000);
});
content.html
<html>
<head>
<title>welcome to phantomjs</title>
</head>
<body name = "content">
<script type = "text/javascript">
window.name = "page2";
console.log('welcome to cookie example');
document.cookie = "username = Roy; expires = Thu, 22 Dec 2017 12:00:00 UTC";
window.onload = function() {
console.log("page is loaded");
}
</script>
<iframe src = "https:///tasks/a.html" width = "800" height = "800"
name = "myframe" id = "myframe"></iframe>
<h1>dddddddddd</h1>
</body>
</html>
以上程式生成以下輸出。
welcome to cookie example page is loaded Hi! I'm evaluateAsync call!
phantomjs_webpage_module_methods.htm
廣告