프로그래밍 언어/jQuery, ajax

jQuery 팁과 트릭

Rateye 2021. 7. 15. 10:22
728x90
반응형

 

질문 : jQuery 팁과 트릭

구문

데이터 저장

최적화

Miscellaneous

답변

HTML 요소 생성 및 참조 유지

var newDiv = $("<div />");

newDiv.attr("id", "myNewDiv").appendTo("body");

/* Now whenever I want to append the new div I created, 
   I can just reference it from the "newDiv" variable */
   


요소가 있는지 확인

if ($("#someDiv").length)
{
	// It exists...
}


자신 만의 선택기 작성

$.extend($.expr[":"], {
    over100pixels: function (e)
    {
        return $(e).height() > 100;
    }
});

$(".box:over100pixels").click(function ()
{
    alert("The element you clicked is over 100 pixels height");
});
출처 : https://stackoverflow.com/questions/182630/jquery-tips-and-tricks
728x90
반응형