0

这部分代码适用于所有浏览器,但不适用于 IE。你能帮我解决这个问题吗?

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
        }
    })
}
4

1 回答 1

2

我遇到了类似的问题,而且这真的很愚蠢,至少在我意识到这是什么之后。尽量不要在 IE 中使用 console.log ......也许会是一样的,祝你好运;)

于 2012-10-12T16:17:21.383 回答