Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JQuery リストビューへの AJAX の追加を黄色に点滅させようとしていますが、機能していないようです。誰かが私を正しい方向に向けることができますか?
http://jsfiddle.net/zFybm/
このコードを使用してください..正常に動作します
function newitem(){ var text='<li><p>new</p></li>'; var elem=$(text); elem.css("background", "#FFA"); $('#list').prepend(elem); $('#list').listview("refresh"); elem.animate({backgroundColor: "#EEE"}); } newitem();