<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Page</title>
<script type="text/javascript" language="javascript">
function callExe() {
var file = "C:\\Windows\\system32\\notepad.exe";
var shellObj = new ActiveXObject("Wscript.Shell");
alert(file);
shellObj.Run(file);
shellObj = null;
}
</script>
</head>
<body>
<input id="Button2" type="button" value="调用" onclick="callExe();" />
</body>
</html>