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

时间:2016-05-19 18:47:11

标签: 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>

1 个答案:

答案 0 :(得分:1)

使用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/