์ ์ฒด ์ต์ 1 ์ต์ 2 ์ต์ 3 1. Select Box 'id'๋ก ์ ๊ทผํ์ฌ ์ ํ๋ ๊ฐ ์ฝ๊ธฐ $("#selectBox option:selected").val(); 2. Select Box 'name'์ผ๋ก ์ ๊ทผํ์ฌ ์ ํ๋ ๊ฐ ์ฝ๊ธฐ $("select[name=selectBox]").val(); 3. Select Box ์ ํํ ์ต์ 'index' ๊ฐ ์ป๊ธฐ $("#selectBox option").index($("#selectBox option:selected")); 4. Select Box ํน์ ์ต์ ์ ํ์ div show/hide ์ ๋ ํธ ๋ฐ์ค ์ต์ ์ ํ ์ ์ํ๋ ์ต์ ์ ์กฐ๊ฑด์ ์ฃผ๊ณ ๊ทธ ์กฐ๊ฑด์ด ๋ง๋ค๋ฉด div ๋์์ธ ๋ณด์ด๊ธฐ ์จ๊ธฐ๊ธฐ $(document).ready(function() { $('#selectBox')...