したがって、あなたの jQuery は次のようになります。
データ型: json
success: function(results) { if (results.msg == 'success') { for (var i in data) { $('#content').append( 'id = ' + results.data[i].id + ', description = ' + results.data[i].description + ', msrp = ' + results.data[i].msrp
}
} else {
$ ('#content').append(results.msg);
そしてあなたのphp....
复制代
代码如下:
if (isset($_GET['id'])) {
$sql = "SELECT id, description, msrp FROM tbl WHERE id = '{$_GET['id']}'";
$return = array();
if ($result = mysql_query($sql)) {
if (mysql_num_rows($result)) {
$return['msg'] = '成功';
while ($row = mysql_fetch_assoc($result)) {
$return['data'][] = $row;
} } else { $return['msg'] = '結果が見つかりません'; } else { $return['msg'] = 'クエリは失敗しました';
}
header("コンテンツタイプ: application/json");
echo json_encode($result);
}
http://www.bkjia.com/PHPjc/326435.html
www.bkjia.com
true
http://www.bkjia.com/PHPjc/326435.html
技術記事
したがって、jQuery は次のようになります。 (results.msg == '成功しました...