OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 <div id="message"></div> | 4 <div id="message"></div> |
5 <select id="s" autofocus> | 5 <select id="s" autofocus> |
6 <option>1</option> | 6 <option>1</option> |
7 <option>2</option> | 7 <option>2</option> |
8 <option>3</option> | 8 <option>3</option> |
9 </select> | 9 </select> |
10 <script> | 10 <script> |
11 function handler(e) { | 11 function handler(e) { |
12 document.getElementById('message').innerText += "click"; | 12 document.getElementById('message').innerText += "click"; |
13 select = document.getElementById('s'); | 13 select = document.getElementById('s'); |
14 select.parentNode.removeChild(select); | 14 select.parentNode.removeChild(select); |
15 } | 15 } |
16 | 16 |
17 document.getElementById('s').addEventListener('click', handler); | 17 document.getElementById('s').addEventListener('click', handler); |
18 </script> | 18 </script> |
19 </body> | 19 </body> |
20 </html> | 20 </html> |
OLD | NEW |