JS或jquery怎么让一个div渐渐显示出来代码:css: #showGo{display:none;}js(引入jQuery): setTimeout(function(){ $("#showGo").show("slow");},3000);