利用jq的append()追加函数即可实现,如:
html:
<div class="main"><input type="button" value="添加" class="btn" />
</div>
JQ:
$(document).ready(function(){$(".btn").click(function(){
var html = '<div style="width:200px height:30px border:1px dashed red margin-bottom:20px"></div>'
$(".main").append(html)
})
})
如果你在样式表中没有指定元素的高度,那就不能通过.css()方法去取.有两种办法:====================<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=utf-8" />
<title>无标题文档</title>
</head><body>
<div>div高度试验</div>
</body>
<script type="text/javascript" src="js/jquery-1.2.6.js"></script>
<script type="text/javascript">
//第一种方法
alert($("div").height())
//第二种方法
alert($("div")[0].offsetHeight)
</script>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)