题解 | #自定义列表#
自定义列表
https://www.nowcoder.com/practice/a49eaf5cfb8d4d2392c28d2da413c93d
<div id="main">
</div>
<script>
window.onload = () => {
const html = '' +
'<dl>' +
' <dt>nowcoder</dt>' +
' <dd>nowcoder</dd>' +
'</dl>'
document.getElementById('main').innerHTML = html
}
</script>
