在单击 h1 后,我将如何正确调用 specialHouse 函数,以仍然允许 $(this) 表示 div.content。目前,以下内容不适用于错误“Uncaught TypeError: Object [object Object] has no method 'specialHouse'”
function specialHouse()
{
$(this).slideDown(500, function(){
$(this).delay(2000).slideUp();
});
};
$('div.content').hide();
$('h1').on('click', function(){
$(this).next('div.content').specialHouse();
})
谢谢你的帮助 :)