建立test.bat文件,存于D:根目录下,作用是将*txt文件拷贝到d:/test目录下。
md test
copy d:/*.txt d:/test
pause
创建WScript.Shell对象,由该对象直接运行test.dat文件。
var objShell
objShell=new ActiveXObject("WScript.Shell")
var iReturnCode=objShell.Run("c:/test.bat",0,true)
创建WScript.Shell对象,由该对象直接运行CMD命令。
var objShell
var objShell= new ActiveXObject("WScript.Shell")
var iReturnCode=objShell.Run("cmd.exe /c md test",0,true)
iReturnCode=objShell.Run("cmd.exe /c copy d:/*.text mytest",0,true)
在js中调用php的代码:
function func()
{ if(confirm("Are you OK with this?"))
{ this.location = "ok.php?action=ok"; }
else
{ this.location = "ok.php?action=cancel"; } }
if($_GET["action"]=="ok")
{ echo "I'm OK!"; }
else
{echo "I'm not OK!"; }
不可能不显示的。但是如果你只想调用命令的话,没必要用cmd,直接用shell啥都可以干
超级用户启动cmd;
cd 进入xxx.js文件目录,运行:node xxx.js ,即可