请,我如何获得所选的键和值的HTML选择组合框使用jQuery?
$(this).find("select").each(function () { if ($.trim($(this).val()) != '') { searchString += $.trim($(this).val()) + " "; //This gives me the key. How can I get the value also? } });
谢谢
解决方法
我假设通过“键”和“价值”你的意思是:
<select> <option value="KEY">VALUE</option> </select>
如果是这样,这会得到您的“VALUE”:
$(this).find('option:selected').text();
你可以得到“KEY”这样:
$(this).find('option:selected').val();