标签:
body中:
<li> <select id="select_phone"></select> <input type="button" id="huoqu" value="huoqu"/> </li>
jquery实现:
$("#huoqu").click(function(){ var text = $("#select_phone")[0].options[$("#select_phone")[0].selectedIndex].text; alert(text); });
标签:
原文地址:http://www.cnblogs.com/007sx/p/5693727.html