문제

this part of code works in all browsers but not in IE. Can you help me fix this?

function getData(userId, instrumentId, minStep) {
    alert(1); // worked!
    console.log(userId, instrumentId, minStep);
    $.ajax({
        type: "POST",
        url: '/controllers/ajax.php',
        data: "instrument=" + instrumentId + '&user=' + userId,
        dataType: 'json',
        cache: false,
        success: function(msg) {
            alert(2); // doesn't work
            document.getElementById("chart").dataFromJS(msg, minStep); // "chart" - id of flash player object loaded using swfobject
        }
    })
}
도움이 되었습니까?

해결책

I had a similar problem and it was something really stupid, at least after I realized what was. Try to don't use console.log in IE... maybe will be the same, good luck ;)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top