答案 0 :(得分:0)
解决方案1:
根据文章Here:
<script type="text/javascript" language="javascript">
function RunFile() {
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run("c:/windows/system32/notepad.exe", 1, false);
}
</script>
<a onclick='RunFile();'>NotePad</a>
解决方案2:
根据微软的文章, https://msdn.microsoft.com/library/aa767914(v=vs.85).aspx
您可以通过将应用程序注册到URI方案来运行本地应用程序。