且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何获取我页面中所有下拉列表的选定索引

更新时间:2023-01-13 19:24:28

' #aspnetForm');


input,选择,parentsa).mouseover( function (){
var selected =


输入,选择,parentsa).options


Hi,
All iam doing an tooltip type validation in my webpage in which i need to get all Dropdowns selected index ,if dropdown selected index is -1 then i should open an tooltip ,the logic for tool tip is working fine,but how to get the selected item index of all my drop downs, i tried something like this didnt workedout.
Pls help me out.atleast in the alert if i get all the dropdowns selected index it will be fine.

var parentsa = $('#aspnetForm');
                          $("input,select", parentsa).mouseover(function () {
                              var selected = $("input,select", parentsa).options[$("input,select", parentsa).selectedIndex].value;
                             
                              $("input,select", parentsa).tooltip("open");
                              alert(selected);

                          });

('#aspnetForm');


("input,select", parentsa).mouseover(function () { var selected =


("input,select", parentsa).options