我有这种情况:http: //jsfiddle.net/Lm7ac/4/
$(".more").hide();
$(document).on("click", ".btn",function() {
alert("hello");
});
$(document).on("click", "div.post",function() {
var morediv = $(this).find(".more");
morediv.slideToggle('fast');
});
单击“.btn”时,我需要保持“.more”关闭(或打开)。
我怎样才能做到这一点?
谢谢