gpt4 book ai didi

javascript 修改元素的样式

转载 作者:太空宇宙 更新时间:2023-11-03 20:58:13 24 4
gpt4 key购买 nike

作为 javascript 的新手,我正在尝试编写一个函数,在用户点击的任何地方将黄色 div 添加到页面(如便利贴)。事件处理似乎很好,但不知何故我想要的样式属性没有应用。这是我的脚本:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<script type="text/javascript">
function get_position(e){
//ie
if(document.all){
curX = event.clientX;
curY = event.clientY;
}
//netscape 4
if(document.layers){
curX = e.pageX;
curY = e.pageY;
}
//mozilla
if(document.getElementById){
curX = e.clientX;
curY = e.clientY;
}
}

function new_div(pobj,e){
get_position(e);
newdiv=document.createElement("div");
newdiv.style.position="absolute";
newdiv.style.left=curX+'px';
newdiv.style.top=curY+'px';
newdiv.style.color="yellow";
document.body.appendChild(newdiv);
// alert("new div");
}
</script>
</head>
<body onmousedown="new_div(this,event);">
</body>

</html>

最佳答案

一些基本的演示:

window.onclick = function ( e ) {
if ( e.target.className === 'postit' ) { return; }
var div = document.createElement( 'div' );
div.contentEditable = true;
div.className = 'postit';
div.style.left = e.clientX + 'px';
div.style.top = e.clientY + 'px';
document.body.appendChild( div );
};

现场演示: http://jsfiddle.net/4kjgP/1/

关于javascript 修改元素的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7458425/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com