如何让 html 打开 lua 文件或打开 exe?

How can I make html open a lua file or open a exe?

我需要知道是否可以让 html 文件打开 lua 文件,例如使用计算机设置为打开这些文件的默认程序打开它。 (或者我可以说 "Open this file with this .exe" 并且我可以让 exe 成为我设置为打开 lua 文件的程序。) 这就是我所拥有的,不过它可以像文本文件一样打开它。

<html>
    <head>
        <title>
            MaGa
        </title>
    </head>
    <body>
        <a href=".\MaGa.html" target="_self">Go to MaGa</a>
        <a href=".\MaGa.lua" target="_self">Open MaGa</a>
    </body>
</html>

使用 IE 的本地网站

start.bat

start lua myfile.lua

start.html

<a href="start.bat">start</a>

删除 Internet Explorer 打开或保存弹出窗口:

https://jwcooney.com/2014/03/31/remove-internet-explorer-open-or-save-popup/