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.
如何检测浏览器是否支持jQueryMobile?
我正在考虑使用Modernizr,但我不知道要检测哪些功能。
文件:
http://jquerymobile.com/gbs/
$.mobile.gradeA()
您可以检查浏览器等级。
if($.mobile.gradeA()){ alert("Supports"); }else{ alert("Does not support"); }