我有點新的jQuery/JavaScript編碼。我已經設法編寫下面的代碼,但我認爲有一個更簡單的方法來寫它。有沒有人能告訴我如何?如何簡化這個jQuery JavaScript代碼?
$(document).ready(function(){
$(".btn_home").click(function(){
$("#article1").fadeIn();
$("#article2").fadeOut();
$("#article3").fadeOut();
$("#article4").fadeOut();
$("#blended").fadeOut();
$("#contact").fadeOut();
});
$(".btn_prt").click(function(){
$("#article1").fadeOut();
$("#article2").fadeIn();
$("#article3").fadeOut();
$("#article4").fadeOut();
$("#over").fadeIn();
$("#blended").fadeOut();
$("#contact").fadeOut();
});
$(".btn_blog").click(function(){
$("#article1").fadeOut();
$("#article2").fadeOut();
$("#article3").fadeIn();
$("#article4").fadeOut();
$("#over").fadeOut();
$("#blended").fadeIn();
$("#contact").fadeOut();
});
$(".btn_abt").click(function(){
$("#article1").fadeOut();
$("#article2").fadeOut();
$("#article3").fadeOut();
$("#article4").fadeIn();
$("#over").fadeOut();
$("#blended").fadeOut();
$("#contact").fadeIn();
});
});
在http://codereview.stackexchange.com/中發佈問題,不在這裏。 – Engineer
除了沒有發佈在正確的位置,您還需要顯示HTML並解釋應該實現的內容。 – Sparky
我不知道codereview有一個特殊的部分。不會再發生:) – Kun