标签: jquery
$("select#promoProductList_length").val();
上述代码在所有浏览器(Firefox,Chrome,IE)中运行良好,除了某些特定版本的IE 8。
在这些浏览器中,这是未定义的值。
所以我实施了一些修复工作。
即,
$("#promoProductList_length option:selected").text();
工作正常。
第一行在某些特定版本的IE中无效的原因是什么?