1

使用此代码,当您将鼠标悬停在任何带有 id="trigger*" 的东西上时,它会显示所有带有 id="panel*" 的东西,让 trigger1 显示 panel1,让 trigger2 显示 panel2。

那可能吗?这是我的代码:

$(document).ready(function(){
hovered = false;

$('*[id^=trigger]').bind('mouseenter mouseleave', function(event) {
switch(event.type) {
    case 'mouseenter':
       // when user enters the div

       $('*[id^=panel]').show('fast');

    break;
    case 'mouseleave':
      // leaves
         setTimeout(function(){
  if(!hovered) {
      $('*[id^=panel]').hide('fast');
      }}, 250);
    break;
}
});

$('*[id^=panel]').mouseover(function(){
hovered = true;
}).mouseout(function(){
hovered = false;
$('*[id^=trigger]').trigger("mouseout");
});

});
4

3 回答 3

0

从触发器对象中提取 id 并使用该 id 来查找面板对象。

$('*[id^=trigger]').bind('mouseenter mouseleave', function(event) {
  // extract id from trigger object
  var id = this.id.substring(7);
  switch(event.type) {
  case 'mouseenter':
    // when user enters the div
    $('*[id^=panel'+id+']').show();
  break;
  case 'mouseleave':
    $('*[id^=panel'+id+']').hide();
  break;
  }
});
于 2011-09-02T16:42:14.857 回答
0

使用正则表达式或 javascript split 函数将 id 拆分为两部分,然后获取 id

例如在我使用的代码中

var draggable_id = $(this).attr('id').split('button')[0];
于 2011-09-02T16:21:10.510 回答
0

如果我了解您的要求,您希望显示与触发的触发器最近的面板。用于.closest()此。

改变这个:

$('*[id^=panel]').show('fast');

对此:

$(this).closest('*[id^=panel]').show('fast');

http://api.jquery.com/closest/

于 2011-09-02T16:15:40.050 回答