当前位置:  开发笔记 > 编程语言 > 正文

表单上的Javascript帖子提交打开一个新窗口

如何解决《表单上的Javascript帖子提交打开一个新窗口》经验,为你挑选了3个好方法。

/sf/ask/17360801/向您展示如何通过邮件提交您通过JavaScript创建的表单.以下是我修改过的代码.

var form = document.createElement("form");

form.setAttribute("method", "post");
form.setAttribute("action", "test.jsp");

var hiddenField = document.createElement("input");  

hiddenField.setAttribute("name", "id");
hiddenField.setAttribute("value", "bob");
form.appendChild(hiddenField);
document.body.appendChild(form); // Not entirely sure if this is necessary          
form.submit();

我想做的是在新窗口中打开结果.我当前正在使用这样的东西在新窗口中打开一个页面:

onclick = window.open(test.html, '', 'scrollbars=no,menubar=no,height=600,);

liggett78.. 219

要么

form.setAttribute("target", "_blank");

到你的表格的定义.



1> liggett78..:

要么

form.setAttribute("target", "_blank");

到你的表格的定义.



2> Marko Dumic..:

如果你想从你的问题中创建和提交你的表单,你想要创建具有自定义功能的弹出窗口我建议这个解决方案(我把评论放在我添加的行之上):

var form = document.createElement("form");
form.setAttribute("method", "post");
form.setAttribute("action", "test.jsp");

// setting form target to a window named 'formresult'
form.setAttribute("target", "formresult");

var hiddenField = document.createElement("input");              
hiddenField.setAttribute("name", "id");
hiddenField.setAttribute("value", "bob");
form.appendChild(hiddenField);
document.body.appendChild(form);

// creating the 'formresult' window with custom features prior to submitting the form
window.open('test.html', 'formresult', 'scrollbars=no,menubar=no,height=600,);

form.submit();


+1比接受的答案更好,因为它实际上将结果放在弹出窗口中,并带有OP想要的选项.
@SaurabhNanda据我所知,``上元件form` target`属性**未弃用**在[HTML 4.01过渡](http://www.w3.org/TR/REC-html40/present/ frames.html#h-16.3)并且显然是留在[HTML 5](http://www.w3.org/TR/html5/the-form-element.html#the-form-element).

3> luchaninov..:
var urlAction = 'whatever.php';
var data = {param1:'value1'};

var $form = $('
'); $.each(data, function(k,v){ $form.append(''); }); $form.submit();

推荐阅读
无名有名我无名_593
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有