在IE 9 $(document).on('change',
中不适用于IE9。 .phoneCountry
是下拉菜单,在选择时需要一些其他数据。
$(document).on('change', '.phoneCountry', function () {
// event.preventDefault();
if ('console' in window) console.log("$('.phoneCountry').change");
if ($(".phoneCountry").val() != "Select") {
//reset the controls
$("#phonecountrycode").val('');
}
可能是什么问题?