可以像这样混合jquery和模板文字吗?

时间:2016-12-07 01:41:07

标签: jquery find append template-literals

我试图将另一个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);
}

0 个答案:

没有答案