在 Ubuntu 上的 Apache Web 服务器中使用 CGI 时,Ajax 不工作。

时间:2021-08-12 04:23:24

标签: jquery ajax apache

你好,我正在尝试使用服务器端的 CGI 开发一个简单的网页。我的当前目标是通过 Ajax 提交表单而无需重新加载页面。

Python 中的 CGI:

#!/usr/bin/env python2

print("Content-Type: text/html \n\n")

f = open("ajax_input.html", "r")
print(f.read())

当前网页:

<!DOCTYPE html>
<html>

        <script>
                $('form.ajax').on('submit', function(){
                        alert("Success");
                        return false;

                });
        </script>

        <body>
                <form method="post" class="ajax">
                        <input type="submit" value="Submission">
                </form>
                <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

        </body>
</html>

0 个答案:

没有答案