1
json dataにHTMLを渡したいと思います。データを表示している間に、htmlコードもstringとして表示されます。どのようにしてURLを表示できますかjsonメッセージでjsonデータのhtmlをコントローラからcodeigniterで表示する方法
コントローラーコード:Ajaxの成功に
$jsarr['msg'] = 'you have not yet - register here <a href="member/register">Register</a>';
$jsarr['redirect'] = 0;
echo json_encode($jsarr);
}
:
if(data.result == 'success'){
//some code
}else{
$(".error").text(data.msg);
}
は、ソリューションを手に入れた:jqueryので 、私はおそらく
if(data.result == 'success'){
//some code
}else{
$(".error").html(data.msg);
}
'jQuery.parseHTML()'を使用できます。関数にhtml文字列を渡すことができます。 –