2014-11-23 5 views
0

간단한 html 양식을 작성했으며 클라이언트에 제출 단추가 표시되지 않는다고 말합니다. 양식과 함께 기본 html 문서를 만들려고했지만 동일하게 발생합니다. 나머지 필드는 괜찮습니다. PC에서 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

으로

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

을 변경 해결했다. – Vino

답변

1

나는 당신이 가지고있는 코드를 게시하시기 바랍니다

<input type="submit"> 
관련 문제