0

我在 IE 中遇到了一个奇怪的问题,其他浏览器没有发生。打开以下网站:

http://www.clinicasdefertilidadenlima.pe/

您将在此页面上看到 3 个显示“Lima”的组合框。单击任何组合并选择任何其他值,例如 Lima 或 Arequipa。页面将刷新,但现在组合不会显示应始终为“Lima”的选定值(我已对其进行硬编码)如果您查看视图源,那么它是一个简单的组合框,我什至定义了 selected="selected"对于“Lima”值,但在 IE 中,它仅在您打开主页时显示选定的值。之后,当您从组合框中选择值时,它不会显示值。

<select id="city_id" name="city_id" class="f2_city" onchange="redirect(this.form)">
    <option value="" selected="selected">LIMA</option>
    <option value="LIMA">LIMA</option>
    <option value="Arequipa">Arequipa</option>
</select>

我正在使用 IE9。

4

2 回答 2

1

我使用适用于 IE7/8/9 Chrome/Firefox 等的 jquery n-th:child 选择器解决了问题。

var comboId = document.getElementById('YourDropDownListId');
var selectedIndex = comboId.selectedIndex;
var selector = '#TableName:nth-child(' + selectedIndex.toString() + ')';
var selectedTable = $(selector).val();
于 2012-08-07T15:27:07.257 回答
0

我已经解决了这个问题。刚刚在页面中定义了这个。

<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" >
于 2012-05-09T04:18:24.083 回答