javascript学习

javascript脚本知识点:
1、脚本在html中位于或者之间,也可写成js文件在html中引用。
2、用var 定义变量。如var i=2, f=2.13 , s=“name”。
3、函数定义 function myFunction(){ ……}
4、document.getElementById(“main”),查找id=“main"的元素。
5、document.getElementById(“main”).getElementsByTagName(“p”),先查找id=“main"的元素,再查找其中的所有

标签。
6、document.write(),直接向html中输出流写内容。
7、document.getElementById(“id”).innerHTML=new HTML,修改html中的内容。
8、document.getElementById(id).attribute=new value,修改标签属性,attribute可以是src等。
9、document.getElementById(id).style.property=new style,修改样式,property可以是color等。
10、处理事件,如onclick、onchange、onload、onfocus、onmouseover、onmouseout、onmousedown、onmouseup等。
11、增加节点, var para=document.createElement(“p”);

                    var node=document.createTextNode("这是新段落。");
                    para.appendChild(node);
                    var element=document.getElementById("div1");
                    element.appendChild(para);

你可能感兴趣的:(javascript学习)