我复制了一个正在处理的更大项目的一部分,我没有编写代码所以我希望有人可以帮我找出为什么从js代码发送一个帖子请求这个时尚作品在IE中并且没有在其他浏览器中。
function f() {
var container = document.createElement("form");
container.method = "post";
container.action= "http://localhost:3203/somefile.aspx";
document.appendChild(container);
container.submit();
}
答案 0 :(得分:16)
请尝试document.body.appendChild(container)
。