码迷,mamicode.com
首页 > Web开发 > 详细

phantomjs-循环输出输入参数

时间:2017-02-23 14:23:37      阅读:352      评论:0      收藏:0      [点我收藏+]

标签:phantomjs   循环输出   输入参数   

var system = require(‘system‘);
if (system.args.length === 1) {
	console.log(‘try to pass some args when invoking this script!‘);
}else{
	system.args.forEach(function(arg,i){
		console.log(i + ‘:‘ + arg);
	})
}

phantom.exit();


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1900448

phantomjs-循环输出输入参数

标签:phantomjs   循环输出   输入参数   

原文地址:http://suyanzhu.blog.51cto.com/8050189/1900448

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!