HTML 类型=“搜索”检测清除按钮支持
In HTML5 we have the <input type="search" />
which acts differently on multiple browsers.
Webkit adds a clear button when text is added and Firefox does not.
Is there a way; other than browser sniffing, to detect if the clear button is supported by the browser?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我目前能想到的最佳答案。它是浏览器嗅探下的一个级别。当浏览器升级或用户使用通用 CSS 规则更改默认行为时,它很容易被破坏。
Best answer I can come up with at the moment. It is one level under browser sniffing. It can break easily with browser upgrades or users changing the default behavior with generic CSS rules.
这是唯一可靠的方法 - 尝试创建一个搜索元素并查看更改是否“有效”:
您可以使用 Modernizr 不过,为您处理检测职责。
This about the only reliable way - try to create a search element and see if the change 'sticks':
You can use Modernizr to handle the detection duties for you, though.