Develop/HTML & JavaScript & CSS (51) 썸네일형 리스트형 ==과 ===의 차이점 http://dorey.github.io/JavaScript-Equality-Table/ [SelectBox] Control 제어 Select Box Control 제어 jQuery로 선택된 값 읽기 $("#selectBox option:selected").val(); $("#select_box > option:selected").val() $("select[name=name]").val(); jQuery로 선택된 내용 읽기 $("#selectBox option:selected").text(); 선택된 위치 var index = $("#test option").index($("#test option:selected")); ------------------------------------------------------------------- // Add options to the end of a select $("#selectBox.. textarea 입력 byte 수 체크 제한 textarea 입력 byte 체크 유용하게 많이 쓰이는 소스입니다. Javascriptfunction fnChkByte(obj, maxByte){ var str = obj.value; var str_len = str.length; var rbyte = 0; var rlen = 0; var one_char = ""; var str2 = ""; for(var i=0; i 4){ rbyte += 2; //한글2Byte }else{ rbyte++; //영문 등 나머지 1Byte } if(rbyte maxByte){ alert("한글 "+(maxByte/2)+"자 / 영문 "+maxByte+"자를 초과 입력할 수 없습니다."); str2 = str.substr(0,rlen); //문자열 자르기 obj.value.. 이전 1 ··· 4 5 6 7 다음