2014-07-24 31 views
0

我想用錨代替按鈕如何發佈主播

該按鈕可以作爲按鈕或提交,但錨不會。

<form id="contact" action="includes/login.php" method="post" name="login_form">  
<input type="submit" value="Login" onclick="formhash(this.form, this.form.password);"/> 



<a href="includes/login.php" onclcik="return formhash(this.form, this.form.password);"><strong>Login</strong></a> 

我確定它處理通過/張貼的參數,但不知道如何解決它。

回答

2

試試這個:

<a onclick="document.getElementById('contact').submit();">click here</a> 

這將發佈形式的所有內容。

+0

應該發佈,但沒有功能執行。 – Will

+0

你想要執行的功能 –

+0

輸入按鈕有一個需要執行和傳遞的formhash()的onclick。 – Will