1

我正在尝试在页面加载时加载一个 jQuery 灯箱。我到了一半。当页面加载时,灯箱会打开,但随后会在与整个页面相同的窗口中打开链接。在将链接加载到单独的窗口中之前,如何让它在此时停止。

jQuery:

$(document).ready(function(){
  $("a.greybox").bind("click", openbox);
  $("a.greybox").trigger('click', openbox);

  function openbox(){
    var t = this.title || $(this).text() || this.href;
    GB_show(t,this.href,340,220);
  }
})

HTML:

<a href="http://google.com/" title="Google" class="greybox">Launch Google</a>
4

2 回答 2

1
function openbox(evt){
    evt.preventDefault(); // <<-- Add this
    var t = this.title || $(this).text() || this.href; 
    GB_show(t,this.href,340,220);}
}
于 2010-08-25T01:30:45.187 回答
1

如果包含以下行:

return false;

在你的功能中。这将阻止链接原始行为触发。

于 2010-08-25T02:06:55.537 回答