自动提交表单,在下一页返回 XML,然后自动提交带有 XML 数据的新表单

发布于 2024-11-04 07:08:55 字数 356 浏览 2 评论 0原文

大家好,我可能会以错误的方式处理这件事,所以任何想法都会很棒。

目前,我有一个表单,它从用户输入中获取数据并将其格式化为 XML,将该 XML 放入文本区域并使用 document.insert.submit() 自动提交;到这个 parse.php 文件。

我不知道 parse.php 文件如何处理数据,但知道如果我向它提供一些 XML,它会返回一个 XML 字符串给我。

我正在尝试获取返回到字符串或变量中的 XML 数据,我可以将其分解并从中取出某些参数。

我已经查看了 .ajax() jquery,但不确定如何提交此表单并从它的变量中获取我的数据。

我怎样才能得到这个返回的XML?

谢谢!

HI all, I might be going about this all the wrong way, so any thoughts would be great.

Currently I have a form that takes data from the user input formats it into XML, puts that XML into a textarea and automatically submits it with document.insert.submit(); to this parse.php file.

I don't have any idea how the parse.php file handles data, but know it returns an XML string to me if I feed it some XML.

I am trying to get this XML data that is returned into a string or variable I can break apart and take certain parameters out of.

I have looked at the .ajax() jquery, but am not sure how to submit this form and get my data returned in a variable from it.

How can I get this XML that is being returned?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月静好 2024-11-11 07:08:55

只需将此脚本添加到您的页面:

<script>
    $(document).ready(function(){
        var $form = $(document.insert);
        $form.submit(function(){
           $.ajax({
              type: $form.attr("method") || 'get',
              url: $form.attr("action"),
              data: $form.serialize(),
              dataType: 'text', //Disables xml autoparsing
              success: function(xml){
                 //Now you have server response in the 'xml' var
                 alert('Xml returned by server: ' + xml);
              }
           });
           return false; //Cancel normal submission
        });
    });
</script>

然后尝试提交您的表单。您将从服务器获取 xml。
希望这有帮助。干杯

Just add this script to your page:

<script>
    $(document).ready(function(){
        var $form = $(document.insert);
        $form.submit(function(){
           $.ajax({
              type: $form.attr("method") || 'get',
              url: $form.attr("action"),
              data: $form.serialize(),
              dataType: 'text', //Disables xml autoparsing
              success: function(xml){
                 //Now you have server response in the 'xml' var
                 alert('Xml returned by server: ' + xml);
              }
           });
           return false; //Cancel normal submission
        });
    });
</script>

And then try to submit your form. You'll get the xml from the server.
Hope this helps. Cheers

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文