如何用JQuery获得table中第一行的td是否触发了mouseenter
如题
如何用JQuery获得table中第一行的td是否触发了mouseenter啊?
如果只有一行时
JScript code
var maxi= $("#table td").length;
var table=document.getElementById("table");
for(var i=0;i<maxi;i++){
$(table.rows[0].cells[i]).mouseenter(function(){
alert(i);
});
}
这么写的话得到的i的值等于maxi
求解
------解决方案--------------------var flag=false;
$("#table tbody tr:eq(0) td:eq(0)").mouseenter(function(){flag=true;});
------解决方案--------------------错了 eq(0)
------解决方案--------------------也可以这样写
$("table tr:first td")
------解决方案--------------------$("#table tr:first td").mouseenter
------解决方案--------------------
= =
要拿你的分不容易啊
$("#tableid tr:first td").mouseenter(function () {
var index= $("#tableid tr:first td").index($(this));
alert(index);
})