当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PhantomJS evaluateAsync()用法及代码示例



此方法在页面内异步评估给定函数,而不会阻止当前执行。此函数有助于异步执行某些脚本。

这个evaluateAsync方法将参数作为函数,第二个参数需要以毫秒为单位的时间。它是函数执行前所用的时间。这个函数没有任何返回值。

用法

其语法如下:

evaluateAsync(function, [delayMillis, arg1, arg2, ...]) 

示例

让我们看一个evaluateAsync()方法的例子。

var wpage = require('webpage').create(); 
wpage.onConsoleMessage = function(str) { 
   console.log(str); 
} 
wpage.open("http://localhost/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 = "http://localhost/tasks/a.html" width = "800" height = "800" 
         name = "myframe" id = "myframe"></iframe> 
      <h1>dddddddddd</h1> 
   </body>
   
</html>

上述程序生成以下内容output

welcome to cookie example
page is loaded 
Hi! I'm evaluateAsync call!

相关用法


注:本文由纯净天空筛选整理自 PhantomJS - evaluateAsync()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。