if($("#id") != null) { } if($(".class") != null) { }
이렇게 쓰는 것보다는
if($("#id").length > 0) { } if($(".class").length > 0) { }
이런식으로 쓰는 것이 좀 더 정확하고 맞을 것이다.
if($("#id") != null) { } if($(".class") != null) { }
이렇게 쓰는 것보다는
if($("#id").length > 0) { } if($(".class").length > 0) { }
이런식으로 쓰는 것이 좀 더 정확하고 맞을 것이다.
© 2024 부빠기별 — Powered by WordPress
Theme by Anders Noren — Up ↑
답글 남기기