Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我提供了这个通常的警告:只有当你绝对确定没有办法测试你想要使用的在 WebKit 版本之间不同的实际功能时,你才应该使用它:
function checkWebKit() { var result = /AppleWebKit\/([\d.]+)/.exec(navigator.userAgent); if (result) { return parseFloat(result[1]); } return null; }