iOS 上的 HTML 选择标签问题
我创建了一个带有标签和选择标签字段的简单 HTML 页面。相同的代码如下:
<html>
<head></head>
<body>
<label>Interval</label>
<select name="interval" id="Interval">
<option value="1hr">1 hour</option>
<option value="2hr">2 hour</option>
<option value="1dy">1 day</option>
<option value="2dy">2 day</option>
</select>
</body>
</html>
现在,当我在 iPhone、iPod (iOS) 上运行此 HTML 页面时,单击下拉列表时,标签的大小(而不是整个 HTML 页面变得更宽、增加)。
我无法理解这个问题。
任何帮助表示赞赏。
I have created a Simple HTML page with a label and a Select tag field. Code for the same is as follows:
<html>
<head></head>
<body>
<label>Interval</label>
<select name="interval" id="Interval">
<option value="1hr">1 hour</option>
<option value="2hr">2 hour</option>
<option value="1dy">1 day</option>
<option value="2dy">2 day</option>
</select>
</body>
</html>
Now as I run this HTML page on iPhone, iPod (iOS), on click of the drop list, the size of the label (instead whole HTML page gets broader, gets increased).
I am unable to understand the problem.
Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 iOS4 中的一个已知错误。选择后它会保持放大状态。 iOS5 据说已经修复了这个问题。
This is a known bug in iOS4. It stays zoomed in after selection. iOS5 supposedly has this fixed.