closest 用法

来源:互联网 发布:hp什么意思网络用语 编辑:程序博客网 时间:2024/05/29 19:20

<table>

<tr>

<td><span onclick="ceshi(this)">ceshi</span></td>

</tr>

</table>


<script>

function ceshi(obj){

var cs = $(obj.).closest("table");

alert(cs.html());

}

</script>


<!--隔行换色-->

$("table").delegate("tr","mouseover",function(){
$(this).addClass("over");
}).delegate("tr","mouseout",function(){
$(this).removeClass("over");
});

原创粉丝点击