0

値を入力したテキストボックスを送信するためのボタンが1つあるフォームがあります。

<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>

私の問題はリセットにあります。どうすればボタンにすることもできますか?

ジョセフ

4

2 に答える 2

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" />
于 2013-02-26T06:58:10.600 に答える
0

つまり:

<input type="button" name="Reset" id="Reset" value="Reset" onclick="window.location.href='gallery.php'"/>
于 2013-02-26T06:58:58.720 に答える