微件:External demands:修订间差异

来自Hyacinth
跳转到导航 跳转到搜索
删除的内容 添加的内容
草awa留言 | 贡献
无编辑摘要
草awa留言 | 贡献
无编辑摘要
第8行: 第8行:
const clone = element.lastChild.cloneNode(true);
const clone = element.lastChild.cloneNode(true);
appendTo.appendChild(clone);
appendTo.appendChild(clone);
clone.style.display = 'inline';
}
}



2024年4月11日 (四) 06:11的版本

<script>
const elements = document.getElementsByClassName("external_demand_span");

const appendTo = document.getElementById("external_demand");

for (let i = 0; i < elements.length; i++) {
    const element = elements[i];
    const clone = element.lastChild.cloneNode(true);
    appendTo.appendChild(clone);
}

</script>