下列代码的输出结果是__________。<script type="text/javascript">function msg(){ var p=document.createElement("p"); var Text=document.createTextNode("Hello!"); p.appendChild(Text); document.body.appendChild(p);}msg();</script>
下列代码的输出结果是__________。<script type="text/javascript">function msg(){ var p=document.createElement("p"); var Text=document.createTextNode("Hello!"); p.appendChild(Text); document.body.appendChild(p);}msg();</script>
下列代码执行结果分析正确的是( )。 function msg() { var p=document.createElement(“p”); var Text=document.createTextNode(“Hello!”); p.appendChild(“Text”); document.appendChild(p); } A: 代码第3行是创建一个选项标记 B: 代码第5行是为文档添加文本节点 C: 是文本节点的子节点 D: 这几行代码的作用是创建新的段落节点
下列代码执行结果分析正确的是( )。 function msg() { var p=document.createElement(“p”); var Text=document.createTextNode(“Hello!”); p.appendChild(“Text”); document.appendChild(p); } A: 代码第3行是创建一个选项标记 B: 代码第5行是为文档添加文本节点 C: 是文本节点的子节点 D: 这几行代码的作用是创建新的段落节点
appendChild()方法可以将创建的文本节点添加到元素节点中。()
appendChild()方法可以将创建的文本节点添加到元素节点中。()
appendChild()可以向指定节点之前插入一个新的子节点。
appendChild()可以向指定节点之前插入一个新的子节点。
创建元素的方法是( )。 A: createTextNode() B: createElement() C: createAttribute() D: appendChild()
创建元素的方法是( )。 A: createTextNode() B: createElement() C: createAttribute() D: appendChild()
创建元素的方法是( )。 A: createAttribute() B: createTextNode() C: createElement() D: appendChild()
创建元素的方法是( )。 A: createAttribute() B: createTextNode() C: createElement() D: appendChild()
下列哪项是移除属性值( )。 A: getAttribute() B: removeAttribute() C: hasAttribute() D: appendChild()
下列哪项是移除属性值( )。 A: getAttribute() B: removeAttribute() C: hasAttribute() D: appendChild()
下列哪项是移除属性值( )。 A: getAttribute() B: removeAttribute() C: hasAttribute() D: appendChild()
下列哪项是移除属性值( )。 A: getAttribute() B: removeAttribute() C: hasAttribute() D: appendChild()
以下哪个不是DOM的操作方法? A: appendChild B: getAttribute C: replaceChild D: deleteChild
以下哪个不是DOM的操作方法? A: appendChild B: getAttribute C: replaceChild D: deleteChild
以下哪个方法用来删除节点的?() A: appendChild() B: removeChild() C: appendTo() D: remove()
以下哪个方法用来删除节点的?() A: appendChild() B: removeChild() C: appendTo() D: remove()