首页 > 代码库 > phantomjs-循环输出输入参数

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-循环输出输入参数