3
我使用jQuery獲得一排容器標籤如何獲得內容,並與jQuery
<tr class="phoneNumber">
ABC...
</tr>
,當我做$( 「phoneNumber的」)。HTML(),它返回ABC...
有沒有辦法讓
<tr class="phoneNumber">
ABC...
</tr>
在此先感謝
我使用jQuery獲得一排容器標籤如何獲得內容,並與jQuery
<tr class="phoneNumber">
ABC...
</tr>
,當我做$( 「phoneNumber的」)。HTML(),它返回ABC...
有沒有辦法讓
<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 outer HTML列出的擴展之一。
[如何獲得innerHtml,包括標籤,使用jQuery?](http://stackoverflow.com/questions/2319213/how-to-get-the-innerhtml-including-the-tag-使用-jquery) – Shyju 2012-07-28 05:16:07
http://stackoverflow.com/questions/2419749/get-selected-elements-outer-html有你的答案 – 2012-07-28 05:18:03