1つの動的関数を作成する最良の方法は何ですか?複数のjQueryをクリックして1つの関数にリファクタリングする
$("#litigation-click").click(function() {
$(".textbox-analysis").hide()
$("#litigation-box").fadeIn("slow",function() {});
$("html, body").animate({ scrollTop: $(document).height() }, "slow");
return false;
});
$("#goingconcern-click").click(function(){
$(".textbox-analysis").hide()
$("#goingconcern-box").fadeIn("slow",function(){});
$("html, body").animate({scrollTop: $(document).height()},"slow");
return false;
});
$("#unquoted-click").click(function() {
$(".textbox-analysis").hide()
$("#unquoted-box").fadeIn("slow",function(){});
$("html, body").animate({ scrollTop: $(document).height() }, "slow");
return false;
});
HTMLのサンプルを追加してください。具体的には、 '#X-click'要素が'#X-box'要素とどのように関係しているのかを知る必要があります –
なぜですか?放っておきなさい。リファクタリングによって読みやすくなりますか?疑わしい。本当にではなく、たくさんの再利用がありますか?ちょうどそれを残す – Liam
私はここに3人以上のリスナーがいて、サンプルを投稿したと仮定します。 – IrkenInvader