0

我正在尝试使用 jQuery 发布和处理表单。

<form action="/postcomment/" method="post" id="commentform">
  <input type="text" name="author" id="author" />
  <input type="text" name="email" id="email" />
<textarea name="comment" id="comment" ></textarea>
<input name="submit" type="submit" id="submit" value="Submit" />
</form>

和 jQuery 代码:

$("#submit").click(function() {
$.ajax({
 dataType: 'json',
 beforeSend: function() {
 },
 timeout: 60000,
 error: function(request,error) {
 },
  success: function(data) {
   var obj = jQuery.parseJSON(data);
   //blah blah...
   } // End success
}); // End ajax method
return false;
});

它按预期工作。但是,如果我将其添加<script type="text/javascript" src="https://www.google.com/recaptcha/api/challenge?k=xxxx" > </script>到表单中,它将不再起作用。

浏览器会问:有一个json文件,要打开吗?

显然,recaptcha 脚本调用“发布”操作。如何阻止 Recaptcha 在表单中执行“操作”?

相关问题:在 Google App Engine 上使用 jQuery 处理 json 表单

4

1 回答 1

0

这就是我改变动作的意思,希望我能理解你的问题:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
 <script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
    <script>
        function changeAction() {
            $("#myForm").attr("action", "anotherAction");
            return false;
        }
    </script>
    <title></title>

</head>
<body>
 <form action="myFirstAction.html" id="myForm"> 
        <input type="text" />
        <button type="submit" onclick="return changeAction()">
        </button>
    </form>
</body>
</html>

单击按钮后,表单的操作是“anotherAction”。

于 2012-08-23T18:41:15.420 回答