如何在if语句中获取另一个id下的id?

时间:2010-04-23 23:45:40

标签: javascript jquery if-statement jquery-animate

如何在if语句中获取另一个id下的id?

$('#mainmenu').mouseenter(function () {
  if ( $(this).???('#a')) {
        }  

  if ( $(this).???('#b')) {
        }  
});

<div id="mainmenu">
    <div id="a"></div>
    <div id="b"></div>
</div>

3 个答案:

答案 0 :(得分:3)

您需要find方法。

$(this).find('#a')

答案 1 :(得分:1)

试试这个:

$('#mainmenu').mouseenter(function () {

  if ($('#a', $(this)) {
    // your code here...............
  }  

  if ($('#b', $(this)) {
    // your code here...............
  }  

});

答案 2 :(得分:1)

$('#mainmenu #a, #mainmenu #b').mouseenter(function(){
 // code for something cool...
});

HTH。