0

我有一个页面,其中有一个从 js 文件调用函数的函数。

js文件中调用函数的代码:

<script language="javascript" type="text/javascript">
var qc = qc_chat;
window.onload = function()
{
qc.setup('<?php echo $p; ?>');
}
</script>

我使用以下代码包含 qc.js 文件:

function doThat() {
    $.ajax({
        url:    'http://www.example.com',
        type: 'GET',
        data: 'adrs='+getHost( document.domain ),
        dataType:   'jsonp',
        jsonp:  false,
        jsonpCallback: 'methodCallback',
        success: function( data ) {
            if( data.message == "yes" ) {

            } else {

        $.getScript("qc.js"); //files m including using this ajax
    $.getScript("tools.js");  //files m including using this ajax
            }
        }, 
        error: function( error ) {
            console.log( error ); 
        }
    });
}

我打电话给doThat()使用<body onload="doThat();">

但我在控制台中收到错误Uncaught ReferenceError: qc_chat is not defined

谢谢

4

2 回答 2

3

由于$.getScript是异步的,任何依赖于它加载的脚本的事情都必须在它的回调函数中完成。所以应该是:

$.getScript('qc.js', function() {
    qc_chat.setup('<?php echo $p; ?>');
});
于 2013-10-09T18:09:05.933 回答
0

当我无法编辑某些模块连接的位置时,我使用以下代码段:

var waitForqcchat = setInterval(function(){
  if(typeof qcchat != 'undefined'){
    clearInterval(waitForqcchat);
    //here I sure, that module connected
    qcchat.setup('<?=$p?>');
  }
}, 200);

如果 qcchat 永远无法连接,您还应该编写一个逻辑来限制等待

于 2013-10-09T18:19:18.423 回答