我正在使用 jquery 来获取一行
<tr class="phoneNumber">
ABC...
</tr>
当我执行 $(".phoneNumber").html() 时,它返回ABC...
Is there a way to get
<tr class="phoneNumber">
ABC...
</tr>
提前致谢
我正在使用 jquery 来获取一行
<tr class="phoneNumber">
ABC...
</tr>
当我执行 $(".phoneNumber").html() 时,它返回ABC...
Is there a way to get
<tr class="phoneNumber">
ABC...
</tr>
提前致谢
(function($) {
$.fn.outerHTML = function() {
return $(this).clone().wrap('<div></div>').parent().html();
}
})(jQuery);
$('.phoneNumber').outerHTML();
使用outerHTML
:
$('.phoneNumber')[0].outerHTML
或者,如果兼容性对您很重要,请使用Get selected element's external HTML中列出的扩展之一。