これは私が使用しているajaxです。
$.ajax({
type: "POST",
url: "../../Ajax/<?php echo $exercise_num ?>",
data: "user_input=" + user_input,
success: function(resp){
//output
$("#message").text(resp);
}
});
}
そして、私が移入しようとする$("#message").text(resp)
と
public function pb3()
{
$num1 = 10;
$num2 = 7;
echo "$num1 + $num2 = "; echo $num1 + $num2;echo "<br>hi";
}
私のhtmlコード:
Message: <font id="message"></font>
出力:
Message: 10 + 7 = 17<br> hi;
または、フォントのテキストエリアで br を使用する方法はありますか?