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.
何か理由があるのでしょうか
$("#cloud").top(100).left(100);
という事実にもかかわらず機能しません
$("#cloud").height(Math.random()*55).width(Math.random()*55);
と
#cloud { top:100px; left:100px; }
完全に正常に動作しますか?
top と left は CSS プロパティであるため、.css()関数を割り当てる必要があります。
.css()
$("#cloud").css({ "top" : "100px", "left" : "100px" });