Web, Html/etc.
input readonly / select disable
dev:j
2016. 9. 7. 09:19
Input 창의 값을 수정 못하게 할 때는
<input id="test" readonly="readonly">
select 창의 값을 수정 못하게 할 때는
<select id="test" disable="disable">
readonly => form에 담겨져 submit 가능
disable => form에 담겨지지 않아서 submit 불가능