html自定义新标签并获取新标签内容

发布于 2024-12-08 21:47:35 字数 532 浏览 1 评论 0原文

在过去的几天里,我发现自己对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

∞觅青森が 2024-12-15 21:47:35

“getElementsByTagName()”函数返回一个节点列表:

alert(newtag[0].innerHTML);

您可以将节点列表视为数组,尽管它并不是真正的 Array 实例。

The "getElementsByTagName()" function returns a node list:

alert(newtag[0].innerHTML);

You can treat the node list as an array, though it's not really an instance of Array.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文