下面是HTML:如何調用jQuery的單擊事件手動
<div class="accordianDiv">
<ul>
<li class="active"><a href="#tab1">tab 1</a></li>
<li><a href="#tab2">document tab 2</a></li>
<li><a href="#tab3">tab 3</a></li>
</ul>
</div>
以下是點擊事件代碼:
//On Click Event
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".tab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
alert(activeTab);
$(activeTab).fadeIn(); //Fade in the active content
return false;
});
在任何HREF的點擊,它工作正常,並執行上面的jQuery的東西。
現在,我需要執行以上jQuery的東西手動使用jQuery示例,請致電HREF[#TAB1/2/3]
的點擊事件。請指導我如何手動調用jquery事件。
含義 - 當需要選擇tab1時,它的click事件應該調用tab1,與tab2和tab3相同。
已嘗試但未執行,我在click事件中添加了警報,它在href手動執行clikc時調用,但在您使用手動點擊事件時沒有調用。 PLZ指南。 – dsi 2014-11-04 08:32:26