我有0编码知识,但希望你们可以协助修改我在网上找到的代码,以创建多个按钮来执行不同的bat文件。我会将其保存为hta文件,以便在win shell环境中运行。谢谢!!!
<html>
<head>
<title>OPEN APPS</title>
<HTA:APPLICATION
APPLICATIONNAME="Exec a bat"
ID="HopHop"
VERSION="1.0"/>
</head>
<script>
function RunExe(){
var shell = new ActiveXObject("WScript.Shell");
var path = '"C:/HUB/dd.bat"';
shell.run(path,1,false);
}
</script>
Select The Application:
<input style="width: 170px; height:23px; color: white; background-color: #203040;
font-family:Book Antiqua;" type="button" Value="Start Chrome"
onClick=RunExe()
}
</html>
你可以给每个按钮一个唯一的ID。
<input id="write_your_id_here" style="width: 170px; height:23px; color: white; background-color: #203040;
font-family:Book Antiqua;" type="button" Value="Start Chrome"
onClick=RunExe()
“onclick”是告诉按钮点击后要做什么。