摘要:
<select id="sel" style="width:200px;" size="10"> <option>11</option> <option>22</option> <option>33</option></select><input type="text" id="nr" /><inp 阅读全文
摘要:
<div style="width:500px; height:500px; margin:100px 0px 0px 100px"> <input id="btn" type="submit" value="确定" style="width:100px; height:35px" disabled 阅读全文
摘要:
<div style="width:500px; height:500px;"> <div style="margin-top:20px;"> <input type="radio" name="sure" id="s1" onclick="KeYong()" />同意 <input type="r 阅读全文
摘要:
document对象 1、找元素:(1)gerElementById()根据ID找 (2)gerElementByClassName()根据Class找,返回数组 (3)gerElementByName()根据Name找,返回数组 (4)gerElementByTagName()根据标签名找,返回数 阅读全文
摘要:
DOM:文档对象模型 --树模型 文档:标签文档,对象:文档中每个元素对象,模型:抽象化的东西 一:window: 属性(值或者子对象): opener:打开当前窗口的源窗口,如果当前窗口是首次启动浏览器打开的,则opener是null,可以利用这个属性来关闭源窗口。 方法(函数): 事件(事先设置 阅读全文