html:
<a href="#" id="a">a</a> <a href="#" id="b">b</a> <script type="text/javascript"> $(function(){ $('#a').greenify(); }); </script> |
js:
$.fn.greenify = function() { console.log(this.index()); console.log($("#b").index()); this.css( "color", "green" ); }; |
这种情况下,第一种方法,可以通过index()来判断。
第二种方法,可以给对象增加一个data属性,用作判断。
$(this).data("lastClick") |