我想弄清楚爲什麼這段代碼不起作用。
我想要的只是簡單的事件委託來分配一個事件監聽器。
它只警報,它不動畫。 請讓我知道什麼是錯在這裏:
$(document).ready(function() {
var img = $("img");
$("span").click(function(e){
var targetClicked = $(e.target).attr('class');
//the alert works fine
alert(targetClicked)
switch(targetClicked){
// i deleted the rest of the cases
case d:img.stop(false,true);
break;
case e:img.slideDown().animate({"width":200, height:200, opacity:0.4,});
break;
//nothings works here as well
case f:alert("hi");
break;
}
});
});
能否請您介紹瞭如何不工作? – 2009-12-17 21:41:14