您的位置:首页 > 其它

页面数据以弹出框的形式提交到另一个action中

2017-10-19 14:07 239 查看
通过post提交的方式将页面中的数据提交到另一个action中

with(document.actionForm) {

window.open("","newBlank","width=450,height=350,scrollbars=yes,resizable=yes,left="+(window.screen.width-450)/2+",top="+(window.screen.height-350)/2+'"');

action = "aAction.do";

target = "newBlank";
submit();
target = "_self";
action = "bAction.do";

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐