반응형
<html>
<head>
<script>
function add(){
var today = new Date();
// select 태그의 option을 정의한다.
var op = new Option();
op.value = today;
op.text = today;
// select 태그에 생성 된 option을 넣는다.
document.forms["frm"].sel.add(op);
}
function clearAll(){
// select 태그의 option을 전체 삭제한다.
document.forms["frm"].sel.options.length = 0;
}
</script>
</head>
<body>
<form name="frm">
<select name="sel" style="width:300px"></select>
<input type="button" value="추가" onClick="add();"/>
<input type="button" value="전부 삭제" onClick="clearAll();"/>
</form>
</body>
</html>
반응형
'Javascript' 카테고리의 다른 글
[JS] SlickGrid 단순 정렬하기 (0) | 2021.03.12 |
---|---|
[JS] 대용량 데이터에 성능 좋은 SlickGrid 시작하기 (0) | 2021.02.05 |
input checkbox 수정 할 수 없게 만들기 (0) | 2017.06.19 |
Javascript - getElementsByTagName, getElementsById, getElementsByClassName으로 HTML Element 찾기 (0) | 2017.03.24 |
Javascript - 메세지박스(Alert, Confirm, Prompt) (0) | 2017.02.21 |
댓글