我有一些使用jQuery.clone()来获取页面的html,然后将其添加到pre标签.它在Firefox和Chrome中正常运行,但在IE中没有任何反应:
<!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>JS Bin</title> <!--[if IE]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <script> $(function(){ $('button').click(function(){ var $clone = $('html').clone(); $('#output').text($clone.html()); }); }); </script> <style> article,aside,figure,footer,header,hgroup,menu,nav,section { display: block; } </style> </head> <body> <button>run test</button> <pre id="output"></pre> </body> </html>
有没有知道IE的错误阻止这个,或者我做错了什么?
(我需要克隆它,因为我在输出之前对它进行了一些更改)