0

我正在尝试创建一个单页应用程序。加载索引页面后,我想将两个 php 模板加载到各自的 div 中。其中一个模板是登录表单,另一个是注册表单。从我一直在阅读的内容来看 - 似乎我需要使用 ajax“get”请求来执行此操作(因为我无法将两个文件传递给 jquery 的 load() 函数)。这是我所拥有的:

应用程序.js

$(document).ready(function() {
    $.ajax({
        type: "GET",
        url: "templates/loginform.php",
        data: somedata,
        success: function(somedata){
            $('#login').append(somedata);
        }
    });

    $.ajax({
        type: "GET",
        url: "templates/regform.php",
        data: somedata,
        success: function(somedata){
            $('#register').append(somedata);
        }
    });
});

我得到的只是一个空白页。

4

1 回答 1

1

解决方案:

$.get('templates/regform.php', function(data) {  
    $('#register').append(data);
});
于 2013-06-21T12:59:12.633 回答