我的 JSON_encode 和 jQuery 有问题,我让它用以下代码发布完整的数组,但我不能让它只回显我需要的一个数组。
$.get("/indexget.php", { page: "goals" },function(data) {
$('#bodyContentStuff').text(data);
完整的 jQuery 代码
$("#navLinkGoals").click(function () {
$("#bodyTitleBar").text("Goals");
$.get("/indexget.php", { page: "goals" },function(data) {
$('#bodyContentStuff').text(data);
}
);
完整的 PHP 代码
if($_REQUEST['page'] = 'goals'){
$result = mysql_query("SELECT * FROM content WHERE page='indexGoals'")
or die(mysql_error());
$row = mysql_fetch_array( $result );
$message = $row['message'];
}
echo json_encode(array("content"=>"$message"));
我是一个编程的菜鸟,但如果你想看看它在做什么,该站点是http://www.gronge.com ,只需单击目标链接。
编辑:哦,我也试过了
$('#bodyContentStuff').text(data['content']);
但它没有用。