ฉันกำลังลองใช้ jquery ด้วยตัวอย่างนี้:
$(document).ready(function(){
$("button").mouseover(function(){
$("p#44.test").css("background-color","yellow");
$("p#44.test").hide(1500);
$("p#44.test").show(1500);
$("p#44.test").css("background-color","red");
});
});
ฉันคาดว่าสิ่งต่อไปนี้จะเกิดขึ้น:
1. Color of <p> to turn yellow
2. <p> to slowly fade
3. <p> to slowly show
4. Color of <p> to turn red
แต่นี่คือสิ่งที่เกิดขึ้นจริง:
1. <p> turned red
2. <p> slowly hid away
3. <p> slowly showed
ทำไมถึงเป็นเช่นนั้น?