jqeury

it/programming

(jQuery)javascript 셀렉터 가져오기

$.fn.getSelector = function() { var selector = $(this).parents().map(function() { return this.tagName; }).get().reverse().join(" "); if (selector) selector += " "+ $(this)[0].nodeName; var id = $(this).attr("id"); if (id) selector += "#"+ id; var classTag= $(this).attr("class"); if (classTag) selector += "." + $.trim(classTag).replace(/\s/gi, "."); return selector; }; jQuery 기반으로 만들었다.$(object)...

반응형
훈솔
'jqeury' 태그의 글 목록