我试图将另一个jQuery对象注入, 使用find()和append()。 但出了点问题,我不确定为什么?
http://codepen.io/ueeieei/pen/RoyVGB?editors=0010
我的代码:
//template
var $container = $(`
<div class="header">Header</div>
<div class="content">Content</div>
`);
//DOM ingridients
var $header = $(`<h1>Main Title</h1>`);
var $content = $(`<p>asldalsdkjaflskdfjsldkfjsdlfksj</p>`);
// Calling the function that do all
$('body').append(doIt($container, $header));
// the glue that binds all
function doIt($template, $headerContent){
$('body').append($template);
$container.find('.header').append($headerContent);
}