我需要将页面提交到两个页面,具体取决于触发提交的按钮。两个页面都需要能够获取正在发送的$ _POST数据。这是我到目前为止所做的,但它不起作用。
<form name="user" action="" method="POST">
<textarea name="tname" id="tname"></textarea>
<input type='button' value='Submit'
onclick="document.user.action='edit.php'; document.user.submit(); this.form.target='_self'; return true;">
<input type='button' value='Preview'
onclick="document.user.action='preview.php'; document.user.submit(); this.form.target='_blank'; return true;">
</form>
两个页面都在同一个窗口中打开(预览按钮应该在新窗口中打开)。
答案 0 :(得分:5)
设置目标与设置操作的方式相同,并在提交表单之前进行设置对我有用:
<form name="user" action="" method="POST">
<textarea name="tname" id="tname"></textarea>
<input type='button' value='Submit'
onclick="document.user.action='edit.php'; document.user.target='_self'; document.user.submit(); return true;">
<input type='button' value='Preview'
onclick="document.user.action='preview.php'; document.user.target='_blank'; document.user.submit(); return true;">
</form>