猿问

再次懵逼的创建元素之自定义元素document.createElement("xxx")

<!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>


一只萌萌小番薯
浏览 694回答 1
1回答
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答