我有各種各樣的下拉列表,從某種意義上說,如果我們選擇第一項不應該在第二個下拉列表顯示了我寫的jQuery像下拉列表中選擇無法在Internet Explorer正常工作
$(document).ready(function() {
$('.ddlProjectvalue').change(function() {
updateDDLValues();
});
});
function updateDDLValues() {
// Display all
$('.ddlProjectvalue option').show();
// Hide all selected options from other selectlists
$('.ddlProjectvalue').each(function(i,element) {
var selectedvalue = $(element).find('option:selected').val();
$('.ddlProjectvalue').not(element).find('option[value="'+selectedvalue+'"]').hide();
});
}
你可以檢查jsfiddle.net,它在Chrome和Firefox中工作正常,但在Internet Explorer中不工作,問題是什麼?
您使用的是哪個版本的IE? –
Windows 7 IE V11。 – Sanjay
Aheumm ...不工作在鉻或者...(小牛,V34) –