<!DOCTYPE html> <html> <head> <script src="https://code.jquery.com/jquery-3.0.0-rc1.js"></script> <script src="https://code.jquery.com/jquery-1.8.3.js"></script> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>JS Bin</title> </head> <body> <select id="test"> <option selected="selected" value="1">1111</option> <option value="2">21111</option> <option value="3">3111</option> <option value="4">411</option> </select> </body> </html> <script> var $test = $("#test"); var txt = 411; var options = $test[0].childNodes; [].slice.call(options).forEach(function(o, i) { var text = o.textContent; var value = o.value; if(text) { if(txt == text) { console.log(value); $(o).attr("selected", "selected"); } } }); </script>

分类: web

标签: