如果我使用content属性定义模板:
$(() => {
console.log("Hello World!");
});
当我使用模板时,仅使用文本节点“替换我...”。它被放入一个段落元素中:
config.templates=[
{title:'Html test', description:'Testing markup', content:'<div class="test"><span class="icon"></span>Replace Me...</div>'}
]
有没有一种方法可以让模板选择加入标记? 在这种情况下,我宁愿不使用'url'属性并在服务器上创建一个单独的文件。