function changeSelectToInput($id) {
$id.replaceWith($('<input />').attr({
type: 'text',
id: $id.attr('id'),
name: $id.attr('name'),
value: $id.val(),
class: 'readonly',
readonly: 'readonly'
}));
}
'javascript' 카테고리의 다른 글
속도개선을 위한 PULL 방식의 화면 구성 (0) | 2016.12.02 |
---|---|
jquery 이벤트 프로시저 on off 하기 (0) | 2016.11.23 |
jQuery 화면 끝단, 이벤트 (0) | 2016.09.26 |
입력 폼 숫자만 받기 (0) | 2016.09.05 |
datepicker 한글로 띄우기 (0) | 2016.07.15 |