IE9使用jquery将项目添加到列表框的可见性问题

时间:2012-11-27 15:03:27

标签: jquery model-view-controller internet-explorer-9

我正在从输入文本框中将项目添加到列表框中。在chrome和firefox中工作正常,但是当我单击按钮将文本添加到IE9中的列表框时,项目会被添加但是不可见。当我点击我的保存按钮时,我添加的项目会显示在集合中,它只是在列表框中看不到。

下面是我的jquery:

$('#addToListBox1').click(function () {
var textValue = $('input[name=classIdInput]').val();

$('#listbox1').append(
    new Option( 
        textValue,
        textValue
    ));
});

IE9的奇怪行为......任何想法为什么添加到列表框中的文本有一个位置虽然你看不到它? THX

1 个答案:

答案 0 :(得分:0)

结果我需要在我的_layout文件中添加元标记:

<meta http-equiv="X-UA-Compatible" content="IE=edge" >