日期:2014-05-16 浏览次数:20363 次
function table_hover_color(){
var rows = document.getElementsByTagName('tr');
for (var i = 0; i < rows.length; i++) {
rows[i].onmouseover = function () {
this.className += 'row_bg';
}
rows[i].onmouseout = function () {
this.className = this.className.replace('row_bg', '');
}
};
}
<script type="text/javascript">
//1.请帮我把下边js转换成jquery
function table_hover_color(){
$("tr").hover(function(){
$(this).addClass("row_bg");
},function(){
$(this).removeClass("row_bg");
})
}
//2.在遍历的时候,我先判断表格下边的checkbox是否被选中,是不是下边这么写
if( $(this).find("input[type='checkbox']").is(':checked')){}
</script>