我使用本教程来隐藏/显示 DIV。不幸的是,由于某种原因它不再起作用(同时我在我的代码中修改了一些东西)......你看到问题来自哪里了吗?jsfiddle: http: //jsfiddle.net/Grek/C8B8g/ 我认为下面的2个脚本可能存在冲突:
function showonlyone(thechosenone) {
$('.textzone').each(function(index) {
if ($(this).attr("id") == thechosenone) {
$(this).show(200);
}
else {
$(this).hide(200);
}
});
}
$('.activity-title a').click(function(){
$('.textzone').fadeOut(2000);
var region = $(this).attr('data-region');
$('#' + region).fadeIn(2000);
})