我已经在我的移动应用上实现了https://github.com/alexblack/google-fastbutton,它运行得很完美,但我是否可以使用jQuery .on()
方法。
像这样的东西
$(document).on('fastClick', '.element', function() { });
我已尝试过上述内容,但似乎无效。
之前有没有人遇到过这个问题,你有没有让它发挥作用?
答案 0 :(得分:0)
如果您使用谷歌快速按钮,这是这样做的方法
$('#your-button').fastClick(function(e) {
alert('fast clicked!');
});