2009年9月11日 星期五

jquery

jquery

$(document).ready(function() {
    $("#box").hide();
    $("a").click(function(){
        $("#box").toggle("slow"); //使id叫box的物件產生出現或隱藏的效果
        });
    });

沒有留言: