如何使用jquery ajax将php脚本加载到div中?

时间:2013-08-12 09:12:23

标签: php jquery ajax

$(document).ready(function(){
    $("#S1").change(function()
    {
        var IDCat=this.value;
        $.ajax({
            type: "GET",
            url: 'product_modify.php',
            data: {IDCat:IDCat},
            success: function(data)
            {
                $("#p1").text(data);
                $("#tempForm").load('tv_form.php');
            }                    
        });
    });
});

这是我的代码,在load()函数中,当我调用'tv_form.html'文件时它可以工作,但是当我调用'tv_form.php'它不起作用时,错误是403禁止 问题出在哪儿 ? .html有效,但.php不起作用。

1 个答案:

答案 0 :(得分:0)

添加网址而不是文件名。

$(document).ready(function(){
  $("#S1").change(function()
  {
    var IDCat=this.value;
    $.ajax({
            type: "GET",
            url: 'product_modify.php',
            data: {IDCat:IDCat},
            success: function(data)
            {
                $("#p1").text(data);
                $("#tempForm").load('URL to tv_form.php'); // www.example.com/file.php
            }
        });
      });
});