javascript DOM实用学习资料第1/3页
访问指定节点:
getElementsByName():
DOM技术
选择你喜欢的颜色!
red
green
blue
var oRadios=document.getElementsByName("color");
alert(oRadios[0].getAttribute("value"));
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
DOM技术
选择你喜欢的颜色!
red
green
blue
var oRadios=document.getElementsByName("color");
alert(oRadios[0].getAttribute("value"));
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
getElementById():
function getValue(){
var odiv1=document.getElementById("div1");
odiv1.innerText="hello!";
}
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
function getValue(){
var odiv1=document.getElementById("div1");
odiv1.innerText="hello!";
}
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
createElement():
创建节点
function createM(){
var op=document.createElement("p");
var otext=document.createTextNode("你好!");
op.appendChild(otext);
document.body.appendChild(op);
}
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
创建节点
function createM(){
var op=document.createElement("p");
var otext=document.createTextNode("你好!");
op.appendChild(otext);
document.body.appendChild(op);
}
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
removeChild():
删除节点
function removeM(){
var op=document.body.getElementsByTagName("p")[0];
document.body.removeChild(op);
}
你好!
hello world!
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
删除节点
function removeM(){
var op=document.body.getElementsByTagName("p")[0];
document.body.removeChild(op);
}
你好!
hello world!
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
当前1/3页 123下一页阅读全文