![]() |
|
|
|
实例下面的例子可从列表中删除被选的选项: <html> <head> <script type="text/javascript"> function removeOption() { var x=document.getElementById("mySelect") x.remove(x.selectedIndex) } </script> </head> <body> <form> <select id="mySelect"> <option>Apple</option> <option>Pear</option> <option>Banana</option> <option>Orange</option> </select> <input type="button" value="Remove option"> </form> </body> </html> |
下一篇飞飞input表单输入框默认提示信息插件 上一篇用键盘打开网页代码 |
|
||||||||||
|
|
||||||||||
|
|
|