jquery.data API和事件绑定[无法理解]

时间:2013-04-19 22:08:28

标签: javascript javascript-events jquery

请解释以下代码段[在互联网上阅读,但也无法理解]:

var $this = $(this);
$this.data('key', $this);

$this.on('click.key', function(e) {
    // do something
});

我知道jquery缓存中的jquery.data转储可以通过$ .cache访问但是我们如何使用key 绑定事件时作为css选择器。

修改

找到我的问题的答案。它不需要对数据API做太多工作,而是与事件命名空间更相关。

jQuery API参考here

0 个答案:

没有答案