0815 document对象

p{ color:#F00;
font-size:36px;}
#aa
{
 width:500px;
 height:400px;
 position:relative;
 background-image:url(images/1.jpg);
 background-size:contain;
 background-repeat:no-repeat;}
</style>
<script type="text/javascript">
document.write("<p>设置一个div,准备好3张图片,设置3个按钮,分别更改不同的背景,默认是第一张(类似于QQ空间更换主题)</p><br />123456789");
</script>
</head>

<body>
<div id="aa"></div><br />
<input id="a" style="" type="button" value="第一张" onmouseover="change1()" />
<input id="b" type="button" value="第二张" onmouseover="change2()" />
<input id="c" type="button" value="第三张" onmouseover="change3()" /><br />
<br />
<img src="images/1.jpg" width="512" id="bb" /><br />
<input style="" type="button" value="第一张" onmouseover="change11()" />
<input type="button" value="第二张" onmouseover="change22()" />
<input type="button" value="第三张" onmouseover="change33()" />

</body>
</html>
<script>
var a =document.getElementById("a");
var b =document.getElementById("b");
var c =document.getElementById("c");
function change11()
{
 var aa = document.getElementById("bb");
 aa.src="images/1.jpg";
 
}
function change22()
{
 var aa = document.getElementById("bb");
 aa.src="images/2.jpg";
 
}
function change33()
{
 var aa = document.getElementById("bb");
 aa.src="images/3.jpg";
 
}

function change1()
{
 var aa = document.getElementById("aa");
 aa.style.backgroundImage ="url(images/1.jpg)";
 a.style.backgroundColor="#6F3";
 b.style.backgroundColor="#CCC";
 c.style.backgroundColor="#CCC";
}
function change2()
{
 var aa = document.getElementById("aa");
 aa.style.backgroundImage ="url(images/2.jpg)";
 b.style.backgroundColor="#6F3";
 a.style.backgroundColor="#CCC";
 c.style.backgroundColor="#CCC";
}
function change3()
{
 var aa = document.getElementById("aa");
 aa.style.backgroundImage ="url(images/3.jpg)";
 c.style.backgroundColor="#6F3";
 b.style.backgroundColor="#CCC";
 a.style.backgroundColor="#CCC";
}
</script>

时间: 2024-10-10 20:18:21

0815 document对象的相关文章

document对象操作:浏览器页面文件

//找元素 1.根据id找 <div id="d1" cs="ceshi"><span>document对象</span></div> //var d1 = document.getElementById("d1"); //alert(d1); 2.根据class找 <div class="d">111</div> <span class="

【温故而知新-Javascript】使用 Document 对象

Document 对象时通往DOM功能的入口,它向你提供了当前文档的信息,以及一组可供探索.导航.搜索或操作结构与内容的功能. 我们通过全局变量document访问Document对象,它是浏览器为我们创建的关键对象之一.Document对象提供了文档的整体信息,并让你能够访问模型里的各个对象.简单示例如下: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>

Window.document对象

一.Window.document对象 1.找到元素:     docunment.getElementById("id"):根据id找,最多找一个:    var a =docunment.getElementById("id");将找到的元素放在变量中:    docunment.getElementsByName("name"):根据name找,找出来的是数组:    docunment.getElementsByTagName("

HTML静态网页--JavaScript-Window.document对象

1.Window.document对象 一.找到元素: docunment.getElementById("id"):根据id找,最多找一个:    var a =docunment.getElementById("id");将找到的元素放在变量中:    docunment.getElementByName("name"):根据name找,找出来的是数组:    docunment.getElementByTagName("name&

javascript中window与document对象、setInterval与setTimeout定时器的用法与区别

一.写在前面 本人前端菜鸟一枚,学习前端不久,学习过程中有很多概念.定义在使用时容易混淆,在此给向我一样刚踏入前端之门的童鞋们归纳一下.今天给大家分享一下js中window与document对象.setInterval与setTimeout定时器的用法与区别.讲得不对的地方,烦请大家指正,还望前辈.大牛多多指教! 二.window对象与document对象的用法和区别 window是全局对象,document是window对象的一个属性它也是一个对象.如图: document对象指的页面这个文档

Unit06: 外部对象概述 、 window 对象 、 document 对象

Unit06: 外部对象概述 . window 对象 . document 对象 小代码演示: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <script> //1.确认框 function del() { var b = confirm("确定要删除此数据吗?&qu

课堂所讲整理:HTML--8Window.document对象

1.Window.document对象 一.找到元素: docunment.getElementById("id"):根据id找,最多找一个:    var a =docunment.getElementById("id");将找到的元素放在变量中:    docunment.getElementByName("name"):根据name找,找出来的是数组:    docunment.getElementByTagName("name&

学习总结之javaScript document对象详解

Document对象内容集合 document 文挡对象 - JavaScript脚本语言描述———————————————————————注:页面上元素name属性和JavaScript引用的名称必须一致包括大小写否则会提示你一个错误信息 “引用的元素为空或者不是对象\\\\\”——————————————————————— 对象属性document.title //设置文档标题等价于HTML的title标签document.bgColor //设置页面背景色document.fgColor

javascript之DOM(二Document对象)

javascript通过Document类型来表示文档.在浏览器中document是HTMLDocument对象(继承自Document)的一个实例,表示整个html页面.而且在浏览器中document对象还是window对象的一个属性,因此可以作为全局属性来用 Document节点具有下列特征: nodeType=9 nodeName="#document" nodeValue=null parentNode=null ownerDocument=null 其子节点可以使Docume