我使用 $.browser.version 来使用 JQuery 验证我的 IE 版本。
当代码在 IE10 上执行时它返回 8.0?
有什么建议么...
我使用 $.browser.version 来使用 JQuery 验证我的 IE 版本。
当代码在 IE10 上执行时它返回 8.0?
有什么建议么...
Try checking if IE is in compatibility mode, by opening the developer tools (F12) and looking at the drop downs at the top of the tool. It is probably in IE8 compatibility mode. Make sure you use a valid doctype, and if all else fails, add the following to the head of your page:
<meta http-equiv="X-UA-Compatible" content="IE=edge">