基本选择器 获取文本$(this).text() 获取html$(this).html() 获取value值$("#demo01").attr("value") 获取class值$(this).attr("class") 获取class值$(this).attr("title","这是刚刚设置的标题内容")
$(this).text()
$(this).html()
$("#demo01").attr("value")
$(this).attr("class")
$(this).attr("title","这是刚刚设置的标题内容")
我想说: