输入类型范围显示文本框而不是滑块
这是我的代码:
<input type="range" name="slider" id="slider" value="5" min="0" max="10" step="1" />
我在(iPhone 4、Android、iPad)中测试过的所有 HTML5 移动浏览器都将其呈现为输入类型=文本。为什么这不会渲染滑块?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
并非所有浏览器都支持它。您可以随时使用 http://www.modernizr.com/ 来测试浏览器是否支持它,然后使用http://jqueryui.com/ 作为后备。尝试这样的事情。
Not all browsers support it yet. You can always use http://www.modernizr.com/ to test if the browser supports it and then use http://jqueryui.com/ as a fallback. Try something like this.
根据这篇文章,它没有在iOS中实现4.2 并没有在 Android 2.3 中完全实现(无论这意味着什么)。我在 iOS 4.3 上进行了测试,看起来它仍然没有针对移动 safari 实现。
似乎也不起作用。
According to this post it's not implemented in iOS 4.2 and not fully implemented in Android 2.3 (whatever that means). I did test on iOS 4.3 and it looks like it's still not implemented for mobile safari.
<input type="number"
does not seem to work either.iOS 5 中添加了对输入 type="range" 的支持,因此您将在 iOS 5 中获得滑块,但之前不会。
Support for input type="range" has since been added within iOS 5, so you will get the slider in iOS 5, but not before.
基于 Modernizr,测试输入类型=“范围”兼容性的最佳方法是:
希望它有帮助。
Based on Modernizr, the best way to test for input type="range" compatibility would be:
Hope it helps.