使用Googles FastButton和jQuery .on()方法

时间:2012-10-31 04:25:24

标签: jquery

我已经在我的移动应用上实现了https://github.com/alexblack/google-fastbutton,它运行得很完美,但我是否可以使用jQuery .on()方法。

像这样的东西

$(document).on('fastClick', '.element', function() { });

我已尝试过上述内容,但似乎无效。

之前有没有人遇到过这个问题,你有没有让它发挥作用?

1 个答案:

答案 0 :(得分:0)

如果您使用谷歌快速按钮,这是这样做的方法

$('#your-button').fastClick(function(e) {
    alert('fast clicked!');
});