我正在使用以下代码(简化版),它适用于新旧 firefox(3.6 和 12)以及 IE7 和 IE8。但在 IE9 中没有。
if (aDropdown.addEventListener)
aDropdown.addEventListener("change", function(){alert("please work");} , false);
else
aDropdown.attachEvent("onchange", function(){alert("please work");} );
这里可能是什么问题?我尝试对 and 使用单引号 (') change
,onchange
但没有运气。
有人有想法么?