1

我刚刚使用一些 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")
    );
4

1 回答 1

1

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

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

    $.post('about.php', function (data) {
        $('.content').append(data);
    })
});
于 2013-06-07T14:03:30.460 回答