当我在选择下拉列表中更改选项时,我将选择的值传递给该特定选项..它在 chrome 和 FF 中工作正常。但它在 IE 中不起作用。
我通过
$('select option').removeAttr('selected');
$(this).attr("selected", "selected");
我在 jsfiddle http://jsfiddle.net/harshacharya/JyvUm/中传递示例
I am trying to do something like this: When an option is selected,it has attribute selected and other option dont. 上述功能在 IE 中不起作用。
你能帮帮我吗。谢谢。