我不确定这是否可行。
我有一个带有表单的网站,点击它时会打开一个新标签:
<form name="form1" id="form1" method="post" action="second.html" target="_blank">
<a class="btn btn-secondary" onclick="form.submit();">button 1</a>
</form>
点击它时会打开一个标签并显示&#34; second.html&#34;
<form name="form2" id="form2" method="post" >
<textarea name="textArea2" id="textArea2"></textarea>
<a class="btn btn-secondary" onclick="form.submit();">return to first page</a>
</form>
我想,第二个按钮将textarea值返回到第一个选项卡。
有可能吗?