我正在使用w3schools Tryit 编辑器中的按钮,并且试图弄清楚当我单击“取消”按钮时如何使我的浏览器重定向到 URL。
这是我尝试过的:
<form action="demo_form.asp" method="get">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<button type="submit" value="Submit">Submit</button>
<button type="reset" value="Reset">Reset</button>
<button type="cancel" onclick="javascript:window.location='http://stackoverflow.com';">Cancel</button>
</form>
但它不起作用。有任何想法吗?