标签: jquery
通常我们可以通过对任何JS变量执行i++来增加值。
i++
我可以做一些类似于这个jQuery代码的事情:
$this.data('numOfOccurrences', $this.data('numOfOccurrences') + 1 );
这不起作用:
$this.data('numOfOccurrences')++;