私はこのコードを使用しています:ブラウザのボタンをクリックして新しいフォルダを作成するには、
function exer()
{
var wsr = WScript.CreateObject("WScript.Shell");
wsr.Exec("cmd /C mkdir C:\\users\\vakav\\Desktop\\VBSCRIPT_2013\\new");
}
<body>
<input type="button" value="test" onclick="exer()" />
</body>
動作しませんが、test.js ファイルで上記の関数を実行し、次のコマンドを実行すると動作します: cmd> cscript.exe test.js 誰でも私を助けてくれますか?