我觉得我已经好几个小时了。 我不能告诉我的剧本当我按下按钮必须关闭显示屏然后打开新的显示器,有人帮助我吗?
$(document).ready(function() {
$('.testoprodotto').addClass("hidden");
$('.testoprodotto').on('click', function() {
if ($(this).hasClass("hidden")) {
$(this).removeClass("hidden").addClass("visible"); // Dropdown
$(this).find('.more').hide().siblings('.less').show(); // Button
} else {
$(this).removeClass("visible").addClass("hidden"); // Dropdown
$(this).find('.more').show().siblings('.less').hide(); // Button
}
});
});
答案 0 :(得分:0)
这样做的一种方法是点击可见的点击。
$('.testoprodotto').on('click', function() {
if ($(this).hasClass("hidden")) {
$('.testoprodotto.visible').click();
$(this).removeClass("hidden").addClass("visible");
/* rest of your code */