이 예제를 사용하여 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
왜 그런 겁니까?