我想成立一個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>
這裏有什麼問題? 。 。 。 。 – rorofromfrance 2014-10-04 08:09:01
我認爲他的東西不起作用。 – 2014-10-04 08:09:38
當我點擊按鈕時,它不會將我重定向到索引頁:) – 2014-10-04 08:09:53