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.
ページの中央にテキストを含む div があります。div をクリックすると、ページ上の任意の場所に移動する必要があります (例: 100px 上)。どうすればいいですか?
ID で要素を取得し、onclick handler. position次に、要素の を次のように設定できます。
onclick
handler
position
jsフィドル
var element = document.getElementById('myDivId'); element.onclick = function(){ element.style.position = "absolute"; element.style.left = '100px'; element.style.top = '100px'; }