15

我有一个带有一个按钮的 HTML 页面,当我们单击该按钮并返回到同一个 HTML 页面时,我需要执行一个 python 脚本。

所以我需要对返回值进行一些验证并执行一些操作。

这是我的代码:

HTML:

<input type="text" name="name" id="name">
<button type="button" id="home" onclick="validate()" value="checkvalue"></button>

JS:

function validate(){
    if (returnvalue=="test") alert(test)
    else alert ("unsuccessful")
}

我的 python 代码正在做的是对在文本框中输入的名称进行一些验证并给出返回状态。

但是我需要在同一页面上返回结果,以便稍后我可以使用所有详细信息进行表单提交。任何帮助将不胜感激

4

2 回答 2

15

您可以使用 Ajax,使用jQuery更容易

$.ajax({
   url: "/path/to/your/script",
   success: function(response) {
     // here you do whatever you want with the response variable
   }
});

你应该阅读jQuery.ajax 页面,因为它有太多的选项。

于 2013-03-01T05:39:30.843 回答
12

在 python 中创建一个页面(或服务),它可以接受 post 或 get 请求并处理信息并返回响应。如果响应是 json 格式会更好。然后您可以使用此代码在按钮单击时进行调用。

<input type="text" name="name" id="name">
<button type="button" id="home" onclick="validate()" value="checkvalue">
<script>
$('#id').click(function(){

 $.ajax({
      type:'get',
      url:<YOUR SERVERSIDE PAGE URL>,
      cache:false,
      data:<if any arguments>,
      async:asynchronous,
      dataType:json, //if you want json
      success: function(data) {
        <put your custom validation here using the response from data structure >
      },
      error: function(request, status, error) {
        <put your custom code here to handle the call failure>
      }
   });
});
</script>

我希望这有帮助

于 2013-03-01T05:57:25.527 回答