jQuery練習3
217 ワード
一、$(this)の下のサブエレメントを選択
span
$("li").click(function(){
$(this).find("span").css("display","none");
});