我是jQuery和JavaScript的初学者。我有以下问题:每次我尝试打开div区域时,它会立即崩溃。 HTML是:
<ul class="information"><li><a class="opener" href="#">opener</a> <div class="slide-block"> ...
JavaScript:
jQuery(".information .opener").on("click", function(event){
var opener = jQuery(this);
// Show/hide the content by toggling active class
opener.parent().find(".slide-block").slideToggle("fast",function(){
opener.parent().toggleClass("active");
});
// Return false to subdue the click
return false;
});
认为它与jQuery的升级有关...
提前致谢
朱利