JavaScript : 脚本语言
onclick :点击事件
alert(内容) 弹出内容
数字 不加''
非数字 加''
document.getElementById(id) 在文档中通过id获取一个元素
鼠标移入 onmouseover
鼠标移出 onmouseout
css怎么写,js就怎么写,其中复合样式例外
margin-left marginLeft
background-color backgroundColor
border-top borderTop
注意:遇到-要大写
示例如下
HTML代码:
<div id="box" onclick="document .getElementById ('box').style.marginLeft='40px'"></div>
style样式:
div{
width:200px;
height:200px;
background: #ccc;
}
效果图:
点击后