如何在元素中访问div,比如使用css的按钮?那么,我可以在div上使用hss函数css或jquery?

时间:2014-01-31 08:08:28

标签: jquery html css3

<table><t head><tr><t h><button><div>

是否有可能获得div?因为我需要在hover上使用div函数。

5 个答案:

答案 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");
});