1.var 对象名=document.getElementById(“).innerHTML方法用于获取页面对象的HTML内容,也就是标签括起来的内容
例子:
a
,对象得到的就是ainnerHTML表示的就是页面上的内容(是一个值),所以也可以反过来输出。
等价于:
2.parseInt或parse等
用来将字符变成对应的数值,比如将字符的’1’变为可以实际计算的数值1.
**
3.对事件做出反应
<button type="button" onclick="alert('Welcome!')">点击这里</button>
4.写入 HTML 输出
document.write("<h1>This is a heading</h1>");
document.write("<p>This is a paragraph</p>");
5.改变 HTML 内容
x=document.getElementById("demo") //查找元素
x.innerHTML="Hello JavaScript"; //改变内容
6.改变 HTML 样式
x=document.getElementById("demo") //找到元素
x.style.color="#ff0000"; //改变样式
7.创建 JavaScript 对象
person=new Object();
person.firstname="Bill";
person.lastname="Gates";
person.age=56;
person.eyecolor="blue";