2014-11-23 104 views
0

我已經做了一個簡單的HTML表單,我的客戶說她沒有看到提交按鈕。我試着用這個表單做一個基本的html文檔,但是它發生的情況是一樣的。其餘的領域都可以。 在個人電腦上evereything很好。 謝謝!提交按鈕不顯示在Ipad

此代碼:

<form action="contact.php" method="post"> 

<label for="adress">Address</label> 
<input type="text" name="address" id="adress" ><br> 

<label for="city">City</label> 
<input type="text" name="city" id="city" ><br> 

<label for="state">State</label> 
<input type="text" name="state" id="state" ><br> 

<label for="zip">Zip Code</label> 
<input type="text" name="zip" id="zip" ><br> 

<label for="telefono">Ph</label> 
<input type="text" name="telefono" id="telefono" ><br> 

<label for="email">Email</label> 
<input type="text" name="email" id="email"> 

<textarea rows="4" cols="50" name="comment"> 
Comment here 
</textarea> 

<button type="submit" > Submit </button> 

</form> 
+0

請張貼你的代碼。 – Vino 2014-11-23 22:59:29

回答

1

我解決它改變

<button type="submit" > Submit </button> 

通過

<input type="submit">