0

由于(_JEXEC),我无法连接到 ajax conf.php 文件,然后我使用 jquery 代码:

$.ajax
({
type: "POST",
url: "conf.php",
data: dataString,
cache: false,
success: function(html)
{
$("#flash").fadeOut("slow");
$("#content").html(html);
} 
});
});

如何以其他工作方式连接到该文件?

4

1 回答 1

1

代码defined( '_JEXEC' ) or die( 'Restricted access' );通常限制ajax

功能,因此您将需要使用define('_JEXEC', 1);

请注意,您需要使用define,而不是defined

于 2012-08-23T17:14:54.433 回答