我正在将内容临时添加到div,tempDiv,并将其添加到显示在#div后面的div链接中。我需要清除tempDiv的内容,以使链接不会彼此附加,从而创建了一个不会链接到任何地方的url字符串。
$(document).ready(function(){
$.getJSON("data.php", function(data){
for(i = 0; i < 5; i++){
$("#tempDiv").append(data.justIn[i].dataLink+ ' ');
$("#contentHere").append("<a href=\"#tempDiv\">Click to go to the div link</a>");
//I need to clear the contents of tempDiv here
}
});
});
在我清除div临时内容的解决方案?
最佳答案
您可以使用$("#tempDiv").empty()
。