2

最後の li に 8 つの li の ul リストがあり、#search という ID があります。ドロップダウンをこれに適用したくありません。どうすれば除外できますか? ここに私のコードがあります..

$(document).ready(function () {     
  $('#navigation li').hover(function () {
    // Show the sub menu
    $('ul', this).stop(true,true).slideDown(300);
  },
  function () {
  //hide its submenu
   $('ul', this).stop(true,true).slideUp(200);         
  });
});

ありがとう

4

1 に答える 1

5

jQuery の.not()を使用する

$('#navigation li').not("#search").hover(function () {
   // Show the sub menu
   $('ul', this).stop(true,true).slideDown(300);
},
function () {
  //hide its submenu
  $('ul', this).stop(true,true).slideUp(200);         
});
于 2012-04-04T11:57:12.100 に答える