创建新的函数jQuery

时间:2014-05-11 07:01:45

标签: jquery

我想创建新的jQuery函数我尝试编写一些代码。 我想知道我的代码是否有效?

Fiddle

这是我的代码

$.fn.hitme = function(){
  return this.each(function() {
    if (this.hitme == 'String') this.hitme = alert('you\'ve hitted me!');
  });
};
$('.round').hitme('why?');

HTML代码

<div class='foo'>
    <h1>Here!!</h1>
    <div class='round'></div>
</div>

1 个答案:

答案 0 :(得分:0)

尝试:

$.fn.hitme = function(item){
  return this.each(function() {
      if (typeof(item) == 'string') alert('you\'ve hit me!')
  });
};
$('.round').hitme('why?');