码迷,mamicode.com
首页 > Web开发 > 详细

js功能检测

时间:2017-08-23 19:08:13      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:try   func   als   false   move   log   pre   error   err   

怎么检测浏览器是否支持某一功能?

 1 function isLocalStorageSupported() {
 2     var testKey = ‘test‘,
 3         storage = window.sessionStorage;
 4     try {
 5         storage.setItem(testKey, ‘testValue‘);
 6         storage.removeItem(testKey);
 7         return true;
 8     } catch (error) {
 9         return false;
10     }
11 }

看到这段代码,挺不错的。

js功能检测

标签:try   func   als   false   move   log   pre   error   err   

原文地址:http://www.cnblogs.com/newh5/p/7419510.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!