使用GWT检测浏览器版本?
是否有 GWT api 可以告诉我它检测到的浏览器版本?
我发现 IE7 的正则表达式处理存在缺陷,需要围绕一些棘手的 String.matches() 表达式进行编码。
Is there GWT api that will tell me which browser version it detected?
I've found a flaw with IE7's regex handling and need to code around some tricky String.matches() expressions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用下面的代码检测浏览器类型。
然后您可以调用该函数并查看浏览器的类型。例如下面的代码决定是否是 Internet Explorer。
此页面具有几乎所有已知浏览器的用户代理。
You can detect the browser type using the code below.
Then you can call that function and look at the type of the browser. For example the code below decides whether it is internet explorer or not.
This page has the User Agent for just about every browser known to man.
您可以使用使用替换的 GWT 延迟绑定并创建以下两个实现您使用正则表达式的课程。
例如,假设您的类名为
Parser
,并且它包含适用于除 IE7 之外的所有 Web 浏览器的代码。然后您可以扩展Parser
并为 IE7 创建ParserIE7
类。然后在您的 GWT 模块配置文件中,您可以添加:然后通过调用,
您应该在
parser
变量中拥有正确的(依赖于 Web 浏览器的)Parser
实现。您可以在此处找到更多详细信息。
You could use GWT deferred binding using replacement and create two implementations of your class in which you use regex.
For example let's assume your class is named
Parser
and it contains code for all web browsers except for IE7. Then you can extendParser
and createParserIE7
class for IE7. Then in your GWT module config file you can add:Then by calling
you should have a proper (web browser dependent) implementation of
Parser
inparser
variable.You can find more details here.
如果您使用 GXT 库,则可以使用 GXT.isChrome 来检测 chrome,并且可以查找GXT 类的不同数据成员来检测特定浏览器。
If you are using the GXT library, you can use GXT.isChrome to detect chrome and you can find different data members of GXT class to detect a particular browser.