我写了这个,请注意我是大学一年级><
应该按照您的意愿进行操作,只需根据您的需要更改 URL。
<script>
$(document).ready(function(){
$("div.nonweb").hide(); // hide nonweb content by default
$("div.web").hide(); // hide web content by default
$("img.webdesigntop").click(function(){
$("img.webdesigntop").attr("src", "http://www.plaatsoft.nl/wp-content/uploads/RedSquare.jpg"); // color webdesigntop button
$("img.nonwebdesigntop").attr("src", "https://twimg0-a.akamaihd.net/profile_images/1287988344/blue-square_normal.jpg"); //grayscale nonwebdesigntop button
$("div.nonweb").hide("fast"); // hide nonweb content
$("div.web").show("slow"); // show web content
});
$("img.nonwebdesigntop").click(function(){
$("img.webdesigntop").attr("src", "https://twimg0-a.akamaihd.net/profile_images/1287988344/blue-square_normal.jpg"); //grayscale webdesigntop button
$("img.nonwebdesigntop").attr("src", "http://www.plaatsoft.nl/wp-content/uploads/RedSquare.jpg"); //colour nonwebdesigntop button
$("div.web").hide("fast"); // hide web content
$("div.nonweb").show("slow"); // show nonweb content
});
});
</script>