如何使用jQuery .append和window.location将内容从单独的.php / html文件加载到div中?

时间:2013-06-07 14:00:44

标签: php jquery append window.location

我刚刚使用一些jQuery完成了我的第一个网站,现在我试图弄清楚如何使用jquery向我的.content div添加内容。 我正在尝试使用此代码但显然不正确。 基本上我认为在其中包含内容的单独文件可能是最好的,然后使用jQuery将“.append()”加载到div中。我该怎么做呢? 我现在正在使用此代码:

    <div class="content"></div>

    $('#about').click(function() {
    $('.module1').show(600);
    $('.content').animate({'width':'620'},600);
    $('.content').append(
    window.location.href("about.php")
    );

1 个答案:

答案 0 :(得分:1)

您可以使用.post()加载来自php的内容

$('#about').click(function () {
    $('.module1').show(600);
    $('.content').animate({
        'width': '620'
    }, 600);

    $.post('about.php', function (data) {
        $('.content').append(data);
    })
});