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.
有什么方法可以在从服务器上的客户端收到的第一个请求中检测历史 API、localStorage 等浏览器功能,以便我可以根据浏览器功能自定义响应页面数据?
我知道如何在页面加载时执行此操作(我使用ModernizrJS 库执行此操作)。
Modernizr
您可以在第一个页面加载时设置一个 cookie。如果所述 cookie 不存在,请检查功能。伪:
if(feature_cookies_does_not_exist) { check_for_features() create_feature_cookie() }