<table><t head><tr><t h><button><div>
是否有可能获得div
?因为我需要在hover
上使用div
函数。
答案 0 :(得分:1)
table > th > button div
或者
table > th > button > div
或者
table th button div
或者如果你想选择第一个div
table > th > button div:first-child
对于jQuery,您可以使用下一个:
$(".selector").hover(function () {
//stuff to do on mouse enter
}, function () {
//stuff to do on mouse leave
});
.hover()拥有自己的处理程序:http://api.jquery.com/hover/
答案 1 :(得分:0)
$('table th div')
会这样做。
我强烈建议你阅读selectors section of the jQuery API,因为这真的是jQuery 101。
答案 2 :(得分:0)
JQuery:
$("table th div").mouseover(function() {
//To Do
});
答案 3 :(得分:0)
你可以使用“&gt;”在css中找到子元素
例如
button > div
答案 4 :(得分:0)
我想你想要
$( this ).next().hover(
function() { $( this ).css("backgroundColor","red");
});