0
我需要的$(this)
內容的功能,我想知道這裏面
;(function($) {
$.fn.extend({
myFunction : function() {
// if this contain "tr" i have to do some ...
}
});
$("#myTable tbody tr").myFunction();
})(jQuery);
你是什麼意思的'內部的字符串?你的意思是標籤名稱? - 'this.tagName'。 – PeterKA
你是指$(this)的內容是什麼意思?元素中包含的html是什麼? –
我需要字符串「#myTable tbody tr」 – IfThenElse