处理指令:target 属性
只读 target
属性是 ProcessingInstruction
接口的属性,它表示 ProcessingInstruction
所面向的应用程序。
例如
html
<?xml version="1.0"?>
是一个处理指令,它的 target
是 xml
。
值
包含应用程序名称的字符串。
示例
在 XML 文档中
js
let parser = new DOMParser();
const doc = parser.parseFromString(
'<?xml version="1.0"?><test/>',
"application/xml",
);
const pi = doc.createProcessingInstruction(
"xml-stylesheet",
'href="mycss.css" type="text/css"',
);
doc.insertBefore(pi, doc.firstChild);
const output = document.querySelector("output");
output.textContent = `This processing instruction's target is: ${doc.firstChild.target}`;
在 HTML 文档中
处理指令行将被视为并表示为 Comment
对象。
html
<?xml version="1.0"?>
<pre></pre>
js
const node = document.querySelector("pre").previousSibling.previousSibling;
const result = `Node with the processing instruction: ${node.nodeName}: ${node.nodeValue}\n`;
document.querySelector("pre").textContent = result;
规范
规范 |
---|
DOM 标准 # dom-processinginstruction-target |
浏览器兼容性
BCD 表格仅在启用了 JavaScript 的浏览器中加载。
另请参阅
- The DOM API