第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在光標(biāo) DOM 上創(chuàng)建新元素

如何在光標(biāo) DOM 上創(chuàng)建新元素

繁花如伊 2023-10-04 15:52:03
我如何才能創(chuàng)建一個(gè)新元素并將其放置在鼠標(biāo)/光標(biāo)所在的位置?我下面有一些示例代碼:<div id = "adivthing></div><script>var newthing = document.createElement("input");                document.getElementById("adivthing").appendChild(newthing); </script>
查看完整描述

1 回答

?
冉冉說(shuō)

TA貢獻(xiàn)1877條經(jīng)驗(yàn) 獲得超1個(gè)贊

如果您在元素上使用position: fixed或position: absolutestyle 屬性newthing,則可以使用left和top屬性在框周圍移動(dòng)元素。


如果您從觸發(fā)事件(例如單擊)獲取鼠標(biāo)坐標(biāo),則可以將適當(dāng)?shù)膌eft和添加top到您的元素中。


下面的例子:


function createInput(event){

  var newthing = document.createElement("input");                

  document.getElementById("adivthing").appendChild(newthing); // Your existing code



  // get the coordinates of the mouse

  var x = event.clientX;     // get the horizontal coordinate

  var y = event.clientY;   // get the vertical coordinate


  // position newthing using the coordinates

  newthing.style.position = "fixed"; // fixes el relative to page. Could use absolute.

  newthing.style.left = x + "px";

  newthing.style.top = y + "px";

}

/* Optional - Making new things more obvious in the pen */

input{

    height: 10px;

    width: 50px;

    background: red;

}


#adivthing{

    height: 600px;

    width: 600px;

    background: blue;

}

<!-- Onclick event added to your existing markup -->

<div id="adivthing" onclick="createInput(event)"></div>


查看完整回答
反對(duì) 回復(fù) 2023-10-04
  • 1 回答
  • 0 關(guān)注
  • 126 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)