表示开始和结束 HTML 标记之间的文本的单词
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从开始标签到结束标签的所有内容都是“HTML 元素”
您引用的位是元素内容
Everything from the start tag to the end tag is an "HTML Element"
The bit you refer to is the element content
这取决于您所指的具体内容:
标记内的任何内容吗?
标记中的文本吗?
标记中的第一个文本节点吗?
这个问题并不那么容易回答。一些示例:
innerText
来引用文本内容,而您可以使用innerHTML
来引用任何 HTML 内容。getStringValue()
string()
方法来检索文本我个人的答案是将其称为元素的(内部)文本。
It depends, on what exactly you are referring to:
<div>
tag?<div>
tag?<div>
tag?The question is not so easy to answer. Some examples:
innerText
to refer to the text content, whereas you would useinnerHTML
to refer to any HTML content.getStringValue()
string()
method to retrieve the textMy personal answer would be to call it the (inner) text of an element.