<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><div class="div"></div></td>
</tr>
</table>
<script>
$(".div").htmal()
</script>
JQuery中点击一次添加按钮,增加一个div的思路如下
给按钮注册一个点击的监听事件
在监听器中创建一个div元素附加在一个html元素后面
示例代码如下
<!DOCTYPE html><html>
<head>
<meta charset="utf-8">
<style type="text/css">
#father
{
width:150px
height:150px
background-color:red
}
#father div
{
width:50px
height:50px
background-color:green
font-size:12px
}
</style>
<script type="text/javascript" src="/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#btn").click(function(){
})
//father元素后面增加一个div元素
$("#father").prepend("<div>新的div</div>")
})
</script>
</head>
<body>
<input type="button" value="增加div" id="btn">
<div id="father"></div>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)