DOMDocument->importNode():IE中不识别该方法,但在FF中识别
DOMDocument->importNode() -- Import node into current document
说明
class DOMDocument {
DOMNode importNode ( DOMNode importedNode [, bool deep] )
}
This function returns a copy of the node to import and associates it with the current document.
参数
importedNode:The node to import.
deep:If set to TRUE, this method will recursively import the subtree under the importedNode.
返回值
The copied node.
异常
DOMException is thrown if node cannot be imported.
例子:
<html>
<head>
<title></title>
<script type="text/javascript">
function test(){
var divObj=document.createElement("div");
divObj.appendChild(document.createTextNode("divtest"));
var spanObj=document.createElement("span");
spanObj.appendChild(document.createTextNode("spantest"));
divObj.appendChild(spanObj);
//document.body.appendChild(divObj);
var node=document.importNode(divObj,true);
document.body.appendChild(node);
}
window.onload=test;
</script>
</head>
<body>
</body>
</html>
本文详细介绍了DOMDocument类中的importNode方法,该方法用于将一个节点导入到当前文档,并与其关联。文章通过示例展示了如何使用此方法以及其参数含义。
244

被折叠的 条评论
为什么被折叠?



