gpt4 book ai didi

javascript - 在 HTML 中更改页面

转载 作者:太空宇宙 更新时间:2023-11-04 12:50:14 26 4
gpt4 key购买 nike

我想设置一个JS,当用户按下按钮时,它会把他们重定向到主页,它叫做index.html

<form method="confirm" style="width: 500px; height: 300px; margin-left: auto; margin-right: auto; margin-top:100px; margin-bottom: 100px; font-size: 30px; color: black;">
<fieldset id="confirm">
<legend>NOTIFICATION</legend>
<table>
<tr>
<td>
<h1>THANK YOU FOR SIGNING IN</h1>
</td>
</tr>
<td>
<input type="submit" value="Return to homepage" onclick="return return1();">
<script>
function return1()
{
window.location.href = 'index.html';
}
</script>
</td>
</tr>


</table>
</fieldset>
</form>

最佳答案

这里有一些错误。

您得到的错误是因为您在表单中使用了提交输入按钮,该按钮将尝试评估您的表单提交。为防止您必须在函数中返回 false。

<script>
function return1()
{
window.location.href = 'index.html';
return false;
}
</script>

但是如果你想做一个简单的重定向到另一个页面的按钮,你不应该使用表单和提交按钮,而只是一个普通的输入按钮

<input type="button" value="Return to homepage" onclick="return1();">

如果你想使用表格是因为你想评估一些数据,你需要把你的页面放在 <form> 上在action字段,不使用脚本

同时确认不接受你应该使用GETPOST .

<form method="POST" action="index.html">

关于javascript - 在 HTML 中更改页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26190915/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com