$(document).on('change','。phoneCountry',function(){在IE9中不起作用

时间:2015-08-26 18:13:30

标签: javascript jquery internet-explorer

在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('');
}

可能是什么问题?

0 个答案:

没有答案