默认情况下我需要显示转发器的第一个数据,当我点击查看更多我需要显示所有其他数据以下是我试过的javascript `
$(".hide-my-div,.my-div").hide();
$(".show-my-div").click(function () {
$(this).parents().children(".show-my-div").hide("slow");
$(this).parents().children(".hide-my-div").show("slow");
$(this).parents().children(".my-div").show("slow");
});
$(".hide-my-div").click(function () {
$(this).parents().children(".hide-my-div").hide("slow");
$(this).parents().children(".show-my-div").show("slow");
$(this).parents().children(".my-div").hide("slow");
});
</script>`