テキストを切り替えたいが、同じページの 2 ~ 3 か所で使用したい。
$(".showdiv").click(function() {
$(this).toggleClass("active");
if ($(this).text() == "+ Show More"){
var sachin = $('.transc_crosssell').removeClass("hidden");
$(this).text("- Show Less");
alert(sachin);
}
else {
$(this).text("+ Show More");
$('.transc_crosssell').addClass("hidden");
}
});
しかし、すべてのトグルは一緒に機能します。それを再愛用する方法を教えてください。それをクリックした場合にのみ、1つのトグルが必要です。
<div class="showdiv">+ Show More</div`>
<div class="transc_crosssell hidden">xyx text </div>