2010-04-13 114 views
1

我试过其中一个例子here加载div中的内容,但除了显示图像,它不显示任何内容。我哪里错了?FBJS阿贾克斯加载内容

文件ajax1.js

function General_Refresh(url,div){ 
    //Showing the load image (pay attention to /> of <img 
    document.getElementById(div).setInnerXHTML('<span id="caric"><center><img src="http://website.name/images/ajax-loader.gif" /></center></span>'); 
    var ajax = new Ajax(); 
    ajax.responseType = Ajax.FBML; 

    ajax.ondone = function(data) { 
     //Hide the loading image 
     document.getElementById('caric').setStyle('display','none'); 
     document.getElementById(div).setInnerFBML(data); 
    } 
    //If there are errors re-try 
    ajax.onerror = function() { 
     General_Refresh(url,div); 
    } 
    ajax.post(url); 
} 

文件quote.html

<script src="http://website.name/scripts/ajax1.js" type="text/javascript"></script> 
    <script type="text/javascript"> 
     <!-- 
     General_Refresh("http://website.name/quote.php","quote"); 
     //--> 
    </script> 

    <div id="wrapper"> 
     <div id="quote"><strong>this</strong></div> 
    </div> 
</div> 
+0

我试过的一件事是,如果我在js文件本身调用general_refresh函数,图像将继续显示。但如果我把它放在html文件中,就像上面这样做,它会加载一次然后消失。也没有加载任何内容。该应用程序是空白的。 – input 2010-04-13 16:41:13

回答

0

有什么不妥FBJS /阿贾克斯。这是quote.php中的错误。