ExternalInterface as3和ajax(jQuery)在IE中不起作用

时间:2012-10-12 15:46:54

标签: jquery ajax actionscript-3 internet-explorer externalinterface

这部分代码适用于所有浏览器,但不适用于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
        }
    })
}

1 个答案:

答案 0 :(得分:2)

我有一个类似的问题,这是非常愚蠢的事情,至少在我意识到这是什么之后。尽量不要在IE中使用console.log ...也许会一样,祝你好运;)