var kontrakt = $("#kontrakt_select").find("option:selected").val();
在 IE(9) 中返回 undefined 但在 Chrome 和 FireFox 中有效
<select id="kontrakt_select">
<option value="12345.1">19999.1 - 1992 ABC</option>
</select>
你能解释一下如何在 IE iwth jQuery 中获取选定的值吗?
谢谢!