1.文档对象模型(Document Object Model,简称DOM),是W3C组织推荐的处理可扩展标志语言的标准编程接口。
2.JavaScript 是属于网络的脚本语言,JavaScript 被数百万计的网页用来改进设计、验证表单、检测浏览器、创建cookies,以及更多的应用,JavaScript 是因特网上最流行的脚本语言。
3.函数的变化
函数的定义
function 函数名() { 填写语句;}
function toGreen()//函数
{
document.getElementById('div1').style.width='400px';
document.getElementById('div1').style.height='300px';
document.getElementById('div1').style.background='green'
}
function toRed()
{
document.getElementById('div1').style.width='300px';
document.getElementById('div1').style.height='200px';
document.getElementById('div1').style.background='red'
}
4.