我有以下jQuery:
$.ajax({
url: href,
context: document.body,
success: function (data) {
alert(data);
// Prepare & show dialog
$(dialogDiv).find('.modal-body p.body').html(data);
...
我在“数据”中有一些 html。我确定是因为我将其显示在警报框中。我尝试在上面脚本的最后一行注入这个 html。当我检查 DOM 时,我没有在其中看到我的 html。
任何的想法?
谢谢。