var showResults = function (title, overview,picture,pictureBack) {
var $template = $('#comment-template').html();
$template = $($template);
$template.find('h4').text(title);
$template.find('p').text(overview);
$template.find('#pic').append(picture);
$template.find('#picBack').append(pictureBack);
var $commentsList = $("#comments-list");
$commentsList.append($template);
}
I want to reset the template by clicking the button which make research
(我想通过单击进行研究的按钮来重置模板)
ask by S.Iliev translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…