日期:2014-05-16 浏览次数:20321 次
(function($) {
$.fn.infs = {
set:function(){
console.log($(this).attr("id"));
}
}
})(jQuery);
$('#vsid_span').infs.set();
$.fn.extend({
set: function () {
alert($(this).attr("id"));
}
});
$('#vsid_span').set();
$(function(){
$.fn.extend({
set: function () {
alert($(this).attr("id"));
}
});
$('#atag').set();
});