新手一枚,敢问各位大神,html中JavaScript结合option的问题
想用html做一个报价小程序,使用option实现选择的物品,button为提交按钮,选择物品后,button提交,JavaScript出现提示,所选择的物品价格是多少。就是这么简单,但是实现不了。有这么几个问题
JavaScript里面,如何获取到option里面的各个元素所代表物品的价格,价格为整数。
郁闷
<html> <head> <script type="text/javascript"> function getIndex() { var x=document.getElementById("mySelect"); alert(x.options[x.selectedIndex].value) } </script> </head> <body> <form> Select your favorite fruit: <select id="mySelect"> <option value="apple">Apple</option> <option value="orange">Orange</option> <option value="pineapple">Pineapple</option> <option value="banana">Banana</option> </select> <br /><br /> <input type="button" onclick="getIndex()" value="Alert index of selected option"> </form>