不在php中工作的Jquery包括页面

时间:2017-07-11 07:55:02

标签: javascript php jquery html include

我有一个页面(form.php),当在主页面中单击用户组时,该页面通过ajax调用。 form.php包含表单字段(如日期选择器等)以及主页中按用户类型选择的其他字段。 我的问题是,当我点击主页面中的任何用户类型时,使用ajax加载form.php页面加载,但此表单中的日期选择器不起作用。我检查所有路径和顺序,但它不起作用。

这是我的代码

doSomething(
     20 lines of code
     whenItsDone(
           20 more lines of code
           whenItsDone(
                  20 morelines of code
                  whenItsDone(
                       20 more lines of code
                       whenItsDone(
                               20 more lines of code
                               whenItsDone(
                                       20 more lines of code
                                       whenItsDone(
                                              20 more lines of code
                                              Finally all done !
                                        )
                                )
                         )
                 )
        )
)

1 个答案:

答案 0 :(得分:1)

$.ajax({
                type: "GET",
                url: "/services/forms.php",
                data: {'UserType': UserType},
                success: function(data){
                    $('#assessmentform').html(data);
                }
            });

如果此文件位于services文件夹

之外,请尝试此操作