1. 程式人生 > >呼叫jQuery的animate()方法無法移動的問題

呼叫jQuery的animate()方法無法移動的問題

原始碼:

    <input type="button" value="Button-1" />
    <button id="btn">Button-2</button>

預設情況下,所有 HTML 元素都有一個靜態位置,且無法移動。
如需對位置進行操作,要記得首先把元素的 CSS position 屬性設定為 relative、fixed 或 absolute!

改後代碼:

    <input type="button" value="Button-1" />
    <button id="btn" style="position: relative">Button-2</button>