求助: 关于用js 实现telnet 的问题
我用脚本实现 telnet功能,代码如下 var WshShell = new ActiveXObject("Wscript.Shell");
WshShell.Run ("cmd");
WshShell.AppActivate( "cmd.exe");
WScript.sleep(2000);
WshShell.SendKeys ('ftp ' + ip + '{ENTER}');
这样写安全性不高,经常出错,请问有没有其他的解决方案?小弟在此先谢过了!