嗨大家好我想要一个直接的方法来让我的HTML ajax检索到的响应显示在contenteditable#div中呈现。 我的HTML:
<div class="editable form-control msg" data-type="text" data-placeholder="Your Message here" id="msg" data-name="msg" contenteditable="true"></div>
<select id="Response" onChange="addSignature(\'Response\')" name="Response"><!-- -->
<option selected="selected" value="default"> ---Select a Signature to add ---</option>
<option value="TY">Thank You</option>
<option value="SUS">See You Soon</option>
<option value="BR">Best Regards</option>
我的JQuery可以检索相应的响应
//Add Response function
function addResponse(obj)
{
var Response = $k('#'+obj).val();
var theResponse = {'response':Response }
$k.ajax({
url: 'inc/runUtilities.php',
data: theResponse,
type: 'POST',
beforeSend: function(url,data)
{
$k('#msg').html('<img src="images/page-loader.gif" height="80px" width="80px" />').fadeIn('slow');
},
success: function(data)
{
$k('#msg').html(data).fadeIn('slow');
}
});
}
同样,我想要做的是在选择更改上获得适当的响应并显示HTML渲染 - 但我不断获得编码。任何建议的人,我已经在stackoverflow上检查了一些问题。