我对使用 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();
});
});