📅  最后修改于: 2020-11-10 05:12:39             🧑  作者: Mango
ProcessingInstruction提供特定于应用程序的信息,该信息通常包含在XML文档的序言部分中。
处理指令(PI)可用于将信息传递给应用程序。 PI可以出现在标记之外的文档中的任何位置。它们可以出现在序言中,包括文档类型定义(DTD),文本内容或文档之后。
PI以特殊标记开头并以?>结尾。遇到字符串?>之后,内容的处理立即结束。
下表列出了ProcessingInstruction对象的属性-
Attribute | Type | Description |
---|---|---|
data | DOMString | It is a character that describes the information for the application to process immediately preceding the ?>. |
target | DOMString | This identifies the application to which the instruction or the data is directed. |