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


PhantomJS onAlert()用法及代码示例



当页面上有警报时调用此回调。回调接受一个字符串并且不返回任何内容。

用法

其语法如下:

var wpage = require('webpage').create(); 
wpage.onAlert = function(msg) {}; 

示例

下面的例子展示了使用onAlert()方法。

var wpage = require('webpage').create(); 
wpage.onAlert = function(str) { 
   console.log(str); 
} 
wpage.open('http://localhost/tasks/alert.html', function(status) { 
   //wpage.stop(); 
   console.log(status);  
   
   phantom.exit(); 
});

alert.html

<html> 
   <head></head> 
   <body> 
      <script type = "text/javascript"> 
         alert("Welcome to phantomjs"); 
      </script> 
      <h1>This is a test page</h1> 
   </body> 
</html>

上述程序生成以下内容output

Welcome to phantomjs 
Success 

相关用法


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