帮助。我想将按钮链接到另一个按钮。我有两个.html文件。
index.html和output.html
以下是这种情况, 在我的index.html中,我在表单中有一个表单和一个按钮。只是一个例子
<div id="additionForm">
<form class="form-addition">
Assume that this form requests for two values and will add that values.
<button type="submit"">ADD</button>
</form> </div>
然后假设当点击ADD(提交)按钮时,它将被定向到output.html,它将显示结果。
在output.html中,如何创建I按钮,如果我按下该按钮,它将&#34;调用&#34; index.html中的表单?
例如, 我按下了output.html上的按钮 必须调用index.html中的表单。
谢谢。
答案 0 :(得分:0)
你可以试试这个
<div id="outputForm">
<form class="form-output">
<button type="button" onclick="location.href='index.html'">Click Me!</button>
</form> </div>
答案 1 :(得分:0)
<div id="outputForm">
<form class="form-output">
<button type="button" onclick="call()">Click Me!</button>
</form> </div>
<script>
function call()
{
window.location.href ='index.html'
}
</script>