• 締切済み

toggleでの構文をまとめたい

$(this).next().slideToggle('fast'); $(this).children('.yajirushi').toggleClass("active"); 2つに分かれている上記の命令文をひとつにまとめる事はできるのでしょうか?

みんなの回答

  • a384939
  • ベストアンサー率37% (3/8)
回答No.1

var $this = $(this); $this.next().slideToggle('fast'); $this.children('.yajirushi').toggleClass("active"); この2つの文を合わせることは難しいですし、今のままの方が保守しやすいです。

関連するQ&A

専門家に質問してみよう