我试图根据从服务器收到的JSON响应附加到有序列表。响应包含HTML标记,由于某种原因它们没有在HTML中呈现。我为响应消息做了一个console.log,看起来没问题。但是,当我将其附加到我的列表时,它不会显示在屏幕上。
我在后端使用jquery和PHP / Mysql进行ajax调用。
这里是jquery代码片段:
success: function (response) {
var responsedata = jQuery.parseJSON(response);
console.log(responsedata.msg);
$('#step3ul2').append("<li>"+responsedata.msg+"</li>");
$("#finalmsgsuccessdiv").show();
},
console.log打印:
<a href = '../editrequest/index.php?q=88>Request id 88</a> was successfully added in the system
但浏览器没有显示任何内容。
答案 0 :(得分:8)
可能是'a'标签上的href属性没有关闭单引号吗?
<a href = '../editrequest/index.php?q=88>
VS
<a href = '../editrequest/index.php?q=88'>