可能重复:
displaying the parsed result to user got after form post method
假设 - 我不想为我的以下实用程序使用任何服务器端口(jsp):) 1.我的Html文件驻留在本地磁盘中(考虑跨域引用约束,并且在建议解决方案时没有jsp) 2.双击时,将打开HTML表单并要求输入订单号 3.输入并提交表单后,服务器以XML格式回复详细信息 注意:对于提交我使用的html POST方法, 到第3步一切正常,我得到服务器响应xml。
现在,
JS submit function
function submit1() // called when i click on submit button on my form
{
var actionFianl = "http://URL(other data is given as form post method)";
document.form1.action = actionFianl;
document.form1.submit();
}
显示XML数据,从
开始<?xml version="1.0" encoding="UTF-8" ?>