我有一个带有一个按钮的表单,用于提交输入值的文本框:
<form id="form1" name="form1" method="post" action="gallery.php">
............
.....
...
<input type="submit" name="button" id="button" value="Filter" />
<a href="gallery.php">Reset</a>
我的问题在于重置。我怎么能把它变成一个按钮?
约瑟夫
答案 0 :(得分:0)
您可以使用:
<input type="button" name="button" id="button" value="Reset" />
$('#button').click(function(){
window.location.href = "gallery.php";
});
如果您不想使用jquery,那么:
<input type="button" name="button" id="button" onclick="window.location.href = 'gallery.php';" value="Reset" />
答案 1 :(得分:0)
你的意思是:
<input type="button" name="Reset" id="Reset" value="Reset" onclick="window.location.href='gallery.php'"/>