TINYINT[(M)] [UNSIGNED] [ZEROFILL] – 범위 : -128 에서 127 (UNSIGNED 일 경우 0 에 255) SMALLINT[(M)] [UNSIGNED] [ZEROFILL] – 범위 : -32768 에서 32767 (UNSIGNED 일 경우 0 에 65535) MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL] – 범위 : -8388608 에서 8388607 (UNSIGNED 일 경우 0 에 16777215) INT[(M)] [UNSIGNED] [ZEROFILL] – 범위 : -2147483648 에서 2147483647 (UNSIGNED […]
월별 글 보관함:2015년 8월
jQuery select 주무르기
jQuery로 선택된 값 읽기 [code language=”javascript”] $(“#selectBox option:selected”).val(); $(“#select_box > option:selected”).val(); $(“select[name=name]”).val(); $(“selectBox”).val(); -> 요것도 나옵니다. [/code] jQuery로 선택된 내용 읽기 $(“#selectBox option:selected”).text(); 선택된 위치 var index = $(“#test option”).index($(“#test option:selected”)); // Add options to the end of a select, 맨 뒤에 추가 $(“#selectBox”).append(“<option value=’1′>Apples</option>”); $(“#selectBox”).append(“<option value=’2′>After Apples</option>”); // Add options to the start of […]