ajaxを介してphpからjqueryにデータを送信しています。
$content="ABC";
すべてがOKなら。私はABCで警戒します。
もしそうなら$content="<div>ABC</div>";
、ヒューストンには問題があります。何も起こりません。
ここにPHPコードがあります
$json = json_encode(array("content" => $content));
echo $json;
そして、これはJqueryです
$('#'+pic_type+'_form_n_'+pic_number).ajaxSubmit({
success: function(responseimage){
result = jQuery.parseJSON(responseimage);
alert(result.content);
何か案は ?
アップデート!jQuery.parseJSON
行にこのコードのみが含まれるように
削除しました
result = responseimage;
そして今、アラートで結果を取得します。結果は次のとおりです
{"content":".<div>ABC<\/div>."}</div>
したがって、JSON がうまく作成されていないことがわかります。私; utf8_encode と trim を試しましたが、結果には何もしません。結果がおかしい。