我正在尝试在页面加载时加载一个 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>