0

我试图让我的 html 文件使用 python-multitouch 批处理文件执行 python 源代码。

文件名是

C:\Users\Alien\Desktop\PYMT\pymt.bat

我从

C:\Users\Alien\Desktop\Multitouch\website template\home.html

我怎样才能做到这一点?

4

2 回答 2

0

只需做这样的事情就应该有可能..

<a href="../../PYMT/pymt.bat">RUN PYTHON</a>

翻转

于 2013-04-10T08:30:37.573 回答
0

您可以做一件简单的事情...使用 Ajax 在 javascript 中编写代码,以从 document.ready() 函数调用 python 文件中的函数。

例如

    $(document).ready(function(){

    $.ajax
            ({  
                type: "GET",
                    url: "/topythonFunction/", 
                data: { },
                success: function (data) 
                {   
    }
    });
});
于 2013-04-10T06:01:55.190 回答