我读过很多文章,但却找不到解决方案。我目前有一个名为index.html的文件,在运行server.py时执行。我只是在本地运行它,并在同一文件夹中有两个单独的.py文件,我试图在单击这两个按钮之一时执行它们。
以下是我从我读过的文章(index.html)拼凑而来的内容:
$("#redeem-key-form").submit(function(e) {
$.ajax({
type: "POST",
url: "http://api.hablow.net/ajax/account/redeem_key",
data: $("#redeem-key-form").serialize(),
success: function(result) {
alert('yay? ' + result);
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert("Error: " + errorThrown);
}
});
e.preventDefault();
});
按钮显示但点击时他们什么都不做。非常感谢任何帮助。