一般ios默认的输入框屏幕键盘右下角的提交按钮样式是换行/return
可以通过一些代码从网页端修改这个按钮的样式
方式一,使用 inputmode 属性
<input type="text" id="myInput" name="myInput" inputmode="numeric"> 可用的 inputmode 值包括: none: 没有提示。 text: 标准文本键盘。 decimal: 用于输入十进制数。 numeric: 用于输入数字。 tel: 电话键盘。 search: 优化用于搜索的键盘。 email: 用于输入电子邮件地址的键盘。 url: 用于输入 URL 的键盘。