我是 jQuery 新手,似乎无法让这段代码工作。第一条语句执行,但以下两条不执行。请帮忙。
$(document).ready(function(){
$("#print-tab").click(function(){
$("#print-content").hide().fadeIn();
});
$("#web-tab").click(function(){
$("#web-content").hide().fadeIn();
});
$("#rest-tab").click(function(){
$("#rest-content").hide().fadeIn();
});
});