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

我需要知道是否可以让html文件打开lua文件,就像电脑上默认用来打开这些文件的程序一样。 (或者我可以说“使用此.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>
点赞
用户4789293
用户4789293

在IE上本地网站

start.bat

start lua myfile.lua

start.html

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

移除Internet Explorer的“打开”或“保存”弹窗:

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

2016-05-19 19:03:33