Js div 자동 생성 및 자동 삭제
<!DOCTYPE html >
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=gb2312" />
<title>xWin HTCDemo</title>
</head>
<body>
<SCRIPT>
function CreateDiv()
{
var str = document.createElement("div");
str.id = "win3";
str.contentEditable = "true";
str.className = "xWin";
str.style.position = "absolute";
//
// google str.style.setAttribute("left","400px"); str.style.left= "400px";
str.style.setAttribute("left","400px");
str.style.setAttribute("top","50px");
str.style.setAttribute("width","100px");
str.style.setAttribute("height","100px");
str.style.setAttribute("z-index","1");
str.style.setAttribute("border","2px solid red");
document.body.a(str);
//win3.innerHTML = " 2<br/>"
win3.innerHTML ='JS :<br>hanzhongkai<br/>'
}
function DelDiv(Id)
{
varTmpDiv=document.getElementById(Id);
document.body.removeChild(TmpDiv);
}
</SCRIPT>
<p>
<input value=" " type="button" onClick="CreateDiv();" >
<input value=" " type="button" onClick="DelDiv('win3');" >
</p>
</body>
</html>
클래스 2:
<!DOCTYPE HTML >
<html>
<head>
<title></title>
</head>
<body>
<div id="l1">
<div style="width:100px;height:30px;background:#111;"></div>
<div style="width:100px;height:30px;background:#222;"></div>
<div style="width:100px;height:30px;background:#333;"></div>
<div style="width:100px;height:30px;background:#444;"></div>
<div style="width:100px;height:30px;background:#555;"></div>
<div style="width:100px;height:30px;background:#666;"></div>
<div style="width:100px;height:30px;background:#777;"></div>
<div style="width:100px;height:30px;background:#888;"></div>
<div style="width:100px;height:30px;background:#999;"></div>
<div style="width:100px;height:30px;background:#eee;"></div>
</div>
<hr >
<div id="l2"></div>
<input type="button" value="pop" onclick="pop();" />
<input type="button" value="push" onclick="push();" />
<script type="text/javascript">
function pop(){
var clds = document.getElementById("l1").getElementsByTagName("div");
if(clds[clds.length-1].nodeType != 1){
document.getElementByIdx_x_x("l2").a(clds[clds.length-2]);
}else {
document.getElementByIdx_x_x("l2").a(clds[clds.length-1]);
}
}
function push(){
var clds = document.getElementById("l2").getElementsByTagName("div");
if(clds[clds.length-1].nodeType != 1){
document.getElementById("l1").a(clds[clds.length-2]);
}else {
document.getElementById("l1").a(clds[clds.length-1]);
}
}
</script>
</body>
</html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.