在<span>foo</span>
中,引用foo
的正确术语是什么?
答案 0 :(得分:5)
定义:之间的文字 start-tag和end-tag称为 元素的内容
答案 1 :(得分:3)
<span>
元素的文本子节点的内容。
请参阅quirksmode:
所以,如果你这样做
<P>This is a paragraph</P>
你创建了两个节点:一个元素P和一个内容为'This is a paragraph'的文本节点。文本节点位于元素内部,因此它被视为元素的子节点。
答案 2 :(得分:2)
我个人称之为内容或文字
跨度中的内容是foo
这听起来是正确的IMO。
答案 3 :(得分:1)
从w3schools引用
An XML element is everything from (including) the element's start tag to
(including) the element's end tag.
An element can contain other elements, simple text or a mixture of both.
Elements can also have attributes.
<bookstore>
<book category="CHILDREN">
<title>Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<book category="WEB">
<title>Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>
In the example above, <bookstore> and <book> have element
contents, because they contain other elements. <author> has
text content because it contains text.
所以,“文字内容”
答案 4 :(得分:0)
我将其称为“内容”或“文字”。
将HTML作为标记语言,您也可以将其称为“描述的”。
答案 5 :(得分:0)
取决于背景,对我而言。
在Javascript中,它将是innerHTML
属性。
在HTML中,它只是内容:
<span>
是起始标记 foo
是 content </span>
是结尾标记