첫문자를 대문자
페이지 정보
본문
첫문자를 대문자
| 소스예제 |
|---|
Tag And Script
<script>
function jsUcfirst(str) {
if (!str) return '';
return str.charAt(0).toUpperCase() + str.slice(1).toLowerCase();
}
document.write( jsUcfirst('cginjs') );
</script>
추천
0
비추천
0
- 이전글 iframe 부모 접근, 자식 접근 25.10.09
- 다음글 table과 display table 속성 25.09.29
