首页 > 代码库 > jQuery获取自身HTML

jQuery获取自身HTML

 1 <html> 2 <head> 3     <title>jQuery获取自身HTML</title> 4     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 5     <meta http-equiv="Content-Language" content="zh-CN" /> 6     <script type="text/javascript" src="http://files.cnblogs.com/Zjmainstay/jquery-1.6.2.min.js"></script> 7 </head> 8 <body> 9 <div class="aa" style="border:1px solid #ABC;width:200px;text-align:center;">点击获取我自身的HTML吧</input>10 <script type="text/javascript">11 $(document).ready(function(){12 $(".aa").click(function(){alert($("<p>").append($(this).clone()).html())});13 });14 </script>15 </body>16 </html>

 

jQuery获取自身HTML