这只是一个关于找出人们做什么和如何做的问题,但是
假设用户将某些内容添加到列表中,完成后,它会运行下面的 ajax 并更新.user-stream-list
$.ajax({
url: "user-stream-list.php",
success: function(data){
$(".user-stream-list").html(data);
}
});
但user-stream-list.php
例如响应是
<li class='feed'><a href='http://www.theverge.com/rss/index.xml' data-fid='13' data-uid='15'><img class='favicon' src='https://www.google.com/s2/favicons?domain=www.theverge.com'><span class='title'>The Verge - All Posts</span><span class='options'><span class='addcat' data-fid='13'>+</span><span class='delete'>×</span></span></a></li>
这在 Web 开发中可以接受吗?或者我真的应该通过 asjson
并将其排序为 html 吗?