我想创建新的jQuery函数我尝试编写一些代码。 我想知道我的代码是否有效?
这是我的代码
$.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>
答案 0 :(得分:0)
尝试:
$.fn.hitme = function(item){
return this.each(function() {
if (typeof(item) == 'string') alert('you\'ve hit me!')
});
};
$('.round').hitme('why?');