html自定义新标签并获取新标签内容
在过去的几天里,我发现自己对 html 自定义标签很感兴趣,所以我决定尝试一下,我在网上没有找到很多信息,但我想我得到了一些结果。
这是我到目前为止达到的代码,
<html>
<body>
<newtag>ds</newtag>
<script type="text/javascript">
var newtag = document.getElementsByTagName('newtag');
alert(newtag.innerHTML);
</script>
</body>
</html>
警报给了我值“未定义”,
我真的不知道我所做的是否好,以及语法是否应该像这样写,我不知道知道即使 html 自定义标签是可能的,
- 是否可以创建自定义 html 标签?
- 我的代码有什么问题?
谢谢。
i found my self in the past few days interesting in html custom tags so i decided to give it a shot , i haven't found a lot of information on the web but i got some results , i think.
here is the code i reached so far
<html>
<body>
<newtag>ds</newtag>
<script type="text/javascript">
var newtag = document.getElementsByTagName('newtag');
alert(newtag.innerHTML);
</script>
</body>
</html>
the alert is giving me the value "undefined" ,
i don't really know if what i have done is good , and if the syntax to suppose to be write like this , and i don't know even if the html custom tag is possible
- is it possible to create custom html tag?
- what is the problem in my code?
thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“getElementsByTagName()”函数返回一个节点列表:
您可以将节点列表视为数组,尽管它并不是真正的 Array 实例。
The "getElementsByTagName()" function returns a node list:
You can treat the node list as an array, though it's not really an instance of Array.