gpt4 book ai didi

javascript - 在主干 View 中处理触摸事件

转载 作者:行者123 更新时间:2023-11-30 12:32:54 25 4
gpt4 key购买 nike

我希望我的主干应用程序在移动设备上表现良好。用“touchend”事件替换“click”事件是否有意义?

var CoolView = Backbone.View.extend({
el : $("#coolEl"),
events: {
'touchend' : 'clickHandler'
}
});

将它添加到事件对象?

var CoolView = Backbone.View.extend({
el : $("#coolEl"),
events: {
'click' : 'clickHandler',
'touchend' : 'clickHandler'
}
});

还有别的吗?

fiddle

最佳答案

您可以使用 Backbone.touch如果设备是移动设备,它将替换点击事件为触摸事件的插件。

关于javascript - 在主干 View 中处理触摸事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27048839/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com