我对jquery一无所知。有人可以指导我下面的代码做什么。我用谷歌搜索但没有找到结果。我想在类为“p-notification”的 div 中添加一些 HTML 内容。这该怎么做?
this.notification = $('<div/>', {
'class': 'p-notification'
});
this.content = $('<div/>', {
'class': $elem.attr("hasFooter") === "true" ? 'p-content with-p-footer' : 'well',
'style': $elem.attr("paddless") === "true" ? 'padding:0;' : '',
'text': 'Loading'
});