<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>
<script>
document.createElement("xxx")//1这样不就只相当于写了<xxx></xxx>标签吗?2、没有输出这样写有什么意义吗,在页面中没有体现才对?3、根据https://segmentfault.com/q/1010000010513047中代码的理解写一次document.createElement("xxx")相当于只是写了一个<xxx></xxx>标签,那么在body中应该也是只能引用一次而已,为什么实际上可以反复多次使用?
</script>
<style>
xxx{
width:100px;
height:100px;
background: grey;
display:block;
}
</style>
<body>
<xxx>
自定义标签的例子1
</xxx>
<xxx>
自定义标签的例子2
</xxx>
</body>
</html>
相关分类