如何在if语句中获取另一个id下的id?
$('#mainmenu').mouseenter(function () {
if ( $(this).???('#a')) {
}
if ( $(this).???('#b')) {
}
});
<div id="mainmenu">
<div id="a"></div>
<div id="b"></div>
</div>
答案 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。