我有一个手风琴设置如下: $('.shortheadline').accordion({ active: false, header: '.headline', autoHeight: false, animated: 'slowslide', changestart: function(event, ui) { $('.brief').css('min-height','0') }, change: function(even
$('.shortheadline').accordion({ active: false, header: '.headline', autoHeight: false, animated: 'slowslide', changestart: function(event, ui) { $('.brief').css('min-height','0') }, change: function(event, ui) { $('.brief:visible').css('min-height','80px'); $('.headline').blur(); } });
我希望点击仅在.headline div上注册,而不是在里面的链接.该链接应该带您到文章页面.
<div class="shortheadline"> <div class="entry"> <div class="headline"> <div class="timestamp">11:34 AM</div> <div class="title"><a href="http://beta.macobserver.com/tmo/article/jeff_gamet_shares_iphone_tips_and_tricks_on_macjury/">Jeff Gamet Shares iPhone Tips and Tricks on MacJury</a></div> </div> <div class="brief"> <div class="teaser_image"> <img src="/imgs/cache/imgs/teaser_images/20090708macjury_new-0x80.png" width="80" height="80" id="teas_48236" alt="macJuryJeff Gamet Shares iPhone Tips and Tricks on MacJury" /></div> <div class="teaser"><p><em>The Mac Observer's</em> Jeff Gamet joined <em>MacJury</em> host Chuck Joiner to talk about Apple's iPhone OS 3.0, the iPhone 3GS, and to share some iPhone tips and tricks, too.</p> </div> </div> </div> <!-- more entries --> </div>
有没有办法防止事件冒泡,所以手风琴只在单击div时触发?
或者有没有办法让链接的默认操作继续?
我试过了:
$("a").click(function(){ window.location=this.href; });
这使链接功能成为可能,但它不允许用户在新的选项卡/窗口中打开链接.
谢谢!
尝试$("a").click(function(event){ event.stopPropagation(); });
click函数传递一个’event’对象.通过调用事件对象的“stopPropagation”方法,可以防止冒泡.