在 PrototypeJS 中,有没有更有效的方法将多个 Element 对象插入到一个元素中?这是我现在拥有的代码:
var calendar_elem = new Element('div', {
'id': 'my_calendar'
}).insert({
bottom: title_elem // assume these are all Element objects
}).insert({
bottom: days_of_week_elem
}).insert({
bottom: month_calendar_elem
}).insert({
bottom: footer_elem
});
索引可以bottom
包含一个数组,还是必须只包含一个 HTML 元素/字符串?insert
获取每个正在编辑的元素的 HTML、连接它们并将其传递给它会更有效bottom
吗?谢谢!