在使用头部或主体添加模板标签之间是否应该考虑什么?前任:
conste template = document.createElement('template');
// add template content etc.
document.body.appendChild(template);
// or
document.head.appendChild(template);
我只是偶然发现了一个动态添加模板的代码库,head
我的直觉告诉我,这可能不是最好的主意,但也许没关系?