jquery加载函数

时间:2009-10-16 16:38:00

标签: jquery load

我写下面的代码

     <script type="text/javascript">
        $(document).ready(function() {
        $('#disp').load('index.php', function(){
         $('#lobar').hide();
       });

    });
  </script>

我需要在页面加载时将index.php加载到div命名为:dis

由于

2 个答案:

答案 0 :(得分:3)

$(function() {
    $('#disp').load('index.php', {}, function(){
        $('#lobar').hide();
    });
});

答案 1 :(得分:1)

load()函数有3个参数但你只传入2.查看this link处加载函数的文档。我想你想传递一个null作为第二个参数来实现你想要的结果。

$('#disp').load('index.php', null, function(){
   $('#lobar').hide();
 });