繁体   English   中英

Ipad上未显示“提交”按钮

[英]Submit button is not being displayed on Ipad

我已经完成了一个简单的html表单,我的客户说她看不到“提交”按钮。 我试着用表格制作一个基本的html文档,但它发生的情况相同。 其余字段都可以。 在PC上,一切都很好。 谢谢!

这段代码:

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

我解决了它的变化

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

通过

<input type="submit">

暂无
暂无

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

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