码迷,mamicode.com
首页 > 其他好文 > 详细

this

时间:2016-04-14 15:41:34      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

 $(‘p‘).click(
        function(){
            //this表示当前被点击元素,但是此时我们当做dom对象
            window.alert(this.innerHTML);
            //$(this) 表示当前被点击元素,但是此时我们当做jquery对象
            window.alert($(this).html());
});

this

标签:

原文地址:http://www.cnblogs.com/sao-di-seng/p/5391077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!