当前位置:编程学习 > JAVA >>

jquery:创建一个新的节点对象的好方法

HTML
 
[html]  
<!DOCTYPE html>  
<html>  
<head>  
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>  
<meta charset=utf-8 />  
<title>JsBin-在线js/css调试工具</title>  
<!--[if IE]>  
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>  
<![endif]-->  
<style>  
  article, aside, figure, footer, header, hgroup,   
  menu, nav, section { display: block; }  
</style>  
</head>  
<body>  
  <p id="hello">Hello OSTools</p>  
</body>  
</html>  
 
JavaScript
 
[javascript] 
//jq创建一个新的节点对象;  
//例如:<div id='mydiv' class='menu'></div>  
var objNewDiv = $('<div>',{'id':'mydiv','class':'menu'});  
objNewDiv.html(123456);  
$('#hello').append(objNewDiv);  
console.log(objNewDiv);  
 
结果:
 
结果
补充:web前端 , JavaScript ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,