我需要获取表格的“td”元素。我无法将鼠标悬停或onclick事件添加到“td”元素,因此我需要使用JQUERY添加它们。
我需要JQUERY将mouseover和onclick事件添加到表格中的所有“td”元素。
这就是我需要的,也许有人可以帮助我?
答案 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。