我使用jQuery编写了一个简单的切换框,它可以在Safari中使用但不适用于Firefox。我不知道为什么。
这很简单:
jQuery(function($){
$(".ipro_toggle_content").hide();
$("h4.ipro_toggle").click(function(){
event.preventDefault();
$(this).next(".ipro_toggle_content").slideToggle();
});
});
答案 0 :(得分:0)
您尚未在点击处理程序中定义event
。它应该是,
$("h4.ipro_toggle").click(function(event){