Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- bash
- Windows
- find
- xargs
- port
- GIT
- IntelliJ
- 줄바꿈 문자
- grep
- VirtualBox
- JavaScript
- maVen
- lsof
- context
- Quartz
- netsh
- 네트워크
- Windows 10
- Source
- ssh
- import
- vscode
- 단축키
- Eclipse
- Mac
- resource
- tomcat
- profile
- web.xml
- plugin
Archives
- Today
- Total
develog
[html] form, select 본문
HTML
<select>
<option value="">--select--</option>
<option value="red">red</option>
<option value="green">green</option>
<option value="blue">blue</option>
</select>
<button class="btn2">reset selected</button>
<button class="btn3">selected values</button>
<div class="output"></div>
CSS
.output {
border: 1px solid lightgray;
height: 20px;
}
JavaScript
document.addEventListener('DOMContentLoaded', function(e) {
var btn2 = document.querySelectorAll('.btn2')[0];
var btn3 = document.querySelectorAll('.btn3')[0];
btn2.addEventListener('click', function(e) {
document.querySelectorAll('select')[0].selectedIndex = -1;
});
btn3.addEventListener('click', function(e) {
document.querySelectorAll('.output')[0].innerHTML = document.querySelectorAll('select')[0].value;
});
});
Comments