<div class="class1">Hello world</div>
不只是“你好世界”.
谢谢!
jQuery.fn.outerHTML = function(s) { return (s) ? this.before(s).remove() : jQuery("<p>").append(this.eq(0).clone()).html(); }
然后在你的选择器中:$(‘.class1’).outerHTML()将为您提供所需的内容.
Source of function