Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我找到了 Agility.js库,我喜欢它创建和操作对象的方式。但是,在所有示例中,对象都附加到文档中(表示为$$.document)。
$$.document
是否可以将对象附加到自定义元素(即告诉视图在自定义元素中插入 HTML 标记)。
Marc 的方法可能有效,但我一直在做的是:
$$.document.append(cities, '#cities-container');
基本上, append 的第二个参数使您能够选择一个选择器来将新的 DOM 元素推入其中。不是很直观,但根据我的经验似乎可以正常工作。