jQuery查看选中对象HTML代码的方法
hbiao68 人气:0本文实例讲述了jQuery查看选中对象HTML代码的方法。分享给大家供大家参考,具体如下:
<!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/html; charset=utf-8" /> <script src='jquery-1.6.2.min.js'></script> <title>jQuery查看选中对象HTML代码</title> </head> <body> <div> <div id="hb">dsaf</div> </div> <script> $(function(){ alert($("#hb").get(0).outerHTML); }); </script> </body> </html>
运行结果为:
<div id="hb">dsaf</div>
(此处注意与innerHTML的区别!)
希望本文所述对大家jQuery程序设计有所帮助。
加载全部内容