标签: jquery-mobile modernizr feature-detection mobile-browser
如何检测浏览器是否支持jQueryMobile?
我在考虑使用Modernizr,但我不知道要检测哪些功能。
答案 0 :(得分:3)
文件:
http://jquerymobile.com/gbs/
$.mobile.gradeA()
答案 1 :(得分:1)
您可以查看浏览器评分。
if($.mobile.gradeA()){ alert("Supports"); }else{ alert("Does not support"); }