Tag object

jQuery로 null 객체를 확인하는 방법

if($(“#id”) != null) { } if($(“.class”) != null) { } 이렇게 쓰는 것보다는 if($(“#id”).length > 0) { } if($(“.class”).length > 0) { } 이런식으로 쓰는 것이 좀 더 정확하고 맞을 것이다.

© 2024 부빠기별 — Powered by WordPress

Theme by Anders NorenUp ↑