Framework7也拥有特性检测库。在你初始化应用之后,你可以访问myApp.support
对象,它包含了支持的特性的信息:
myApp.support.touch | boolean. 如果浏览器支持触屏事件(touchstart, touchmove, touchend),为true |
也可以通过原型来访问Support对象的参数:
var support = Framework7.prototype.support;
if (support.touch) {
console.log('Browser has touch event')
}