jquery有可以代替js的outerHTML的方法嗎?想獲取整個html內容
clone對象添加到div中,或者div的內容即可
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.4.min.js"></script>
<table><tr><th>head1</th><th>head2</th></tr></table>
<script>
alert($('<div></div>').append($('table').clone()).html())
</script>