OnClick和OnLoad jQuery脚本

时间:2014-03-15 13:51:10

标签: jquery

如何在onLo上运行jQuery脚本并onClick?

实际代码:

$(document).ready(function(){
    $('.gi-repeat').click();
    $(".gi-repeat").click(function(){
        $("#content").eq(0).load("assets/load/content.php");
    })
})

3 个答案:

答案 0 :(得分:1)

我想你想触发点击事件,所以:

$(document).ready(function(){
    $(".gi-repeat").click(function(){
        $("#content").load("assets/load/content.php");
    }).click();
});

仅供参考,因为ID在文档上下文.eq(0)上必须是唯一的,这里没有任何意义。

答案 1 :(得分:0)

只需进行一些更改:

$(document).ready(function(){
    /*$('.gi-repeat').click();*/ // wrong line, cause you're invoking 
                                 // click before initiate
    $(".gi-repeat").click(function(){
        $("#content").load("assets/load/content.php");
    }).click(); // This is a initial trigger to click
});

答案 2 :(得分:0)

或者你可以单独调用onLoad

 $(document).ready(function(){
    $(".gi-repeat").click(giRepeat);
    giRepeat();
 });


 giRepeat = function(){
    $("#content").load("assets/load/content.php");
   }