日期:2014-05-16 浏览次数:20338 次
<input id="aa" type="text" value="123" />
<script>
//方法一
$.fn.extend({
test: {
$this: this,
test1: function () {
alert(this.$this.val());
}
}
});
//方法二
$.fn.extend({
test: function () {
alert(this.val());
}
});
$("#aa").test.test1();
$("#aa").test();
</script>
<input id="aa" type="text" value="123" />
<script>
//方法一
$.fn.extend({//////////
test1: function () {
return {
$this: this,
test1: function () {
alert(this.$this.val());
}
}
}
});
//方法二
$.fn.extend({
&