我有这个简单的 jQuery 片段(使用 jQuery 非常简单),我想将它转换为 javascript,这似乎真的很难。
例如,我不知道如何处理 .each - 函数。
希望您能提供帮助,给我提示或快速解决问题。
$("#rTab div[id^=tab]").each(function(){
if( !$.trim( $(this).html() ).length ) {
id = $(this).attr("id");
//alert(id);
$("#rTab li[rel="+id+"]").hide();
}
});
$(".tabContent").hide();
$(".tabContent:first").show();
//click MUSS live
$("ul.tabs li").live('click',function() {
$("ul.tabs li").removeClass("active");
$(this).addClass("active");
$(".tabContent").hide();
//MUSS rel, weil href mit location.hash in product.php so nicht läuft
var activeTab = $(this).attr("rel");
$("#"+activeTab).fadeIn();
});