$(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
不起作用。
答案 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
}
});
});
});