<html xmlns="http://www.w3.org/1999/xhtml"> <head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>
js调用cmd命令行
</title>
</head> <body onLoad="win_run()">
</body>
<script type="text/javascript">
function win_run() {
var cmd = new ActiveXObject("WScript.Shell");
cmd.run("ping baidu.com -t");
}
</script> </html>