Javascript添加div到前面两个div中间后删除div,请问下这个怎么改,只会添加不会删除也不会添到指定位置

<head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><title>无标题文档</... <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
.div1{width:50px;height:50px;background-color:red}
.div2{width:50px;height:50px;background-color:green}
</style>
<div class="div1"></div>
<div class="div2"></div>
<input type="button" onclick="aa()" value="添加" />
<input type="button" onclick="sc()" value="删除" />
</head>
<body>
<script>
function aa() {
var div = document.createElement("div");
div.style.backgroundColor="blue";
div.style.height="50px";
div.style.width="50px";
document.body.appendChild(div);
}
function sc(){

}
</script>
</body>
展开
 我来答
网海1书生
科技发烧友

2019-09-09 · 擅长软件设计、WEB应用开发、小程序
网海1书生
采纳数:12311 获赞数:26228

向TA提问 私信TA
展开全部
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
.div1{width:50px;height:50px;background-color:red}
.div2{width:50px;height:50px;background-color:green}
</style>
</head>
<body>
<div class="div1"></div>
<div class="div2"></div>
<input type="button" onclick="aa()" value="添加" />
<input type="button" onclick="sc()" value="删除" />
<script>
function aa() {
var div = document.createElement("div");
div.id="newDiv";
div.style.backgroundColor="blue";
div.style.height="50px";
div.style.width="50px";
document.body.insertBefore(div,document.getElementsByClassName("div2")[0]);
}
function sc(){
document.body.removeChild(document.getElementById("newDiv"));
}
</script>
</body>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式