简体   繁体   English

Ipad上未显示“提交”按钮

[英]Submit button is not being displayed on Ipad

I have done a simple html form, and my client says she doesn't see the submit button. 我已经完成了一个简单的html表单,我的客户说她看不到“提交”按钮。 I tried making a basic html document with the form but it happens the same. 我试着用表格制作一个基本的html文档,但它发生的情况相同。 The rest of the fields are ok. 其余字段都可以。 On PC evereything is fine. 在PC上,一切都很好。 Thanks! 谢谢!

This the code: 这段代码:

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

I solved it changing 我解决了它的变化

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

By 通过

<input type="submit">

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM