我正在實現文章元素的CSS3過渡效果,但事件監聽器transitionend只適用於純JavaScript,而不適用於jQuery。CSS3轉換事件監聽器與jQuery
見下面的例子:
// this works
this.parentNode.addEventListener('transitionend', function() {alert("1"); }, true);
// this does not work
$(this).parent().addEventListener('transitionend', function() {alert("1"); }, true);
有人可以解釋我什麼我做錯了嗎?
要獲得完整的兼容性,您還應該包含供應商前綴事件。參見http://blog.teamtreehouse.com/using-jquery-to-detect-when-css3-animations-and-transitions-end](http://blog.teamtreehouse.com/using-jquery-to-detect -when-css3-animations-and-transitions-end)以獲取詳細信息。 –