如何使用jquery在表元素中获取“td”?

时间:2008-10-02 01:51:56

标签: jquery

我需要获取表格的“td”元素。我无法将鼠标悬停或onclick事件添加到“td”元素,因此我需要使用JQUERY添加它们。

我需要JQUERY将mouseover和onclick事件添加到表格中的所有“td”元素。

这就是我需要的,也许有人可以帮助我?

2 个答案:

答案 0 :(得分:24)

$(function() {
    $("table#mytable td").mouseover(function() {
        //The onmouseover code
    }).click(function() {
        //The onclick code
    });
});

答案 1 :(得分:1)

使用以下代码开始使用。它应该做你需要的。

$("td").hover(function(){
   $(this).css("background","#0000ff");
},
function(){
  $(this).css("background","#ffffff");
});

您可以使用this as a reference, which is where I pulled that code