表示开始和结束 HTML 标记之间的文本的单词

发布于 2024-11-28 09:54:03 字数 92 浏览 0 评论 0原文

在 HTML 中,有诸如
之类的标签

在此输入文字
您将此处的文字部分称为什么? 我想过将其称为值,但值本身就是标签的属性。

In HTML there are tags such as
<div id="abc">TEXT HERE</div>
What would you cal lthe text here part?
I thought about calling it value, but value itself is an attribute of a tag.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

空城旧梦 2024-12-05 09:54:03

从开始标签到结束标签的所有内容都是“HTML 元素”
您引用的位是元素内容

Everything from the start tag to the end tag is an "HTML Element"
The bit you refer to is the element content

ぇ气 2024-12-05 09:54:03

这取决于您所指的具体内容:

  • 它是
    标记内的任何内容吗?
  • 它只是
    标记中的文本吗?
  • 它只是
    标记中的第一个文本节点吗?
  • 您是在谈论 HTML 作为一种语言,还是 HTML 的 DOM 模型,或者访问 HTML 的 API?
  • ……

这个问题并不那么容易回答。一些示例:

  • 使用 JavaScript,您可以使用 innerText 来引用文本内容,而您可以使用 innerHTML 来引用任何 HTML 内容。
  • 对于像 Dom4j 这样的 DOM 库,元素中字符串的通用术语由 getStringValue()
  • 通过 XSLT,您可以使用string() 方法来检索文本
  • ...

我个人的答案是将其称为元素的(内部)文本。

It depends, on what exactly you are referring to:

  • Is it anything that's within the <div> tag?
  • Is it just the text within the <div> tag?
  • Is it just the first text node within the <div> tag?
  • Are you talking about HTML as a language, or about a DOM model of HTML, or about an API accessing the HTML?
  • ...

The question is not so easy to answer. Some examples:

  • With JavaScript, you can use innerText to refer to the text content, whereas you would use innerHTML to refer to any HTML content.
  • With a DOM library like Dom4j, the generic term for the string within an element is determined by getStringValue()
  • With XSLT, you can use the string() method to retrieve the text
  • ...

My personal answer would be to call it the (inner) text of an element.

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