自动提交表单,在下一页返回 XML,然后自动提交带有 XML 数据的新表单
大家好,我可能会以错误的方式处理这件事,所以任何想法都会很棒。
目前,我有一个表单,它从用户输入中获取数据并将其格式化为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将此脚本添加到您的页面:
然后尝试提交您的表单。您将从服务器获取 xml。
希望这有帮助。干杯
Just add this script to your page:
And then try to submit your form. You'll get the xml from the server.
Hope this helps. Cheers