美文网首页
02事件的拓展

02事件的拓展

作者: Yuann | 来源:发表于2017-09-21 21:41 被阅读0次
<style>
div {
width:100px;
height:100px;
backgroundcolor:red;
cursor:pointer;
}>

</style>
<body>
<div id = "box" onclick = "fn"></div>
<script>
//1.获取事件源
var div = document.getElementById("box");
//获取事件源(一共五种)
var arr1 = document.getElementByTagName("div");
var arr2 = document.getElementByClassName("leiming");
var arr3 = document.getElementByName("aaa");
//2.绑定事件
//2.1匿名绑定
div.onclick = function (){
alert(1);
//可以操作的标签 = 的属性和样式
div.className = "aaa";
div.style.width = "200px";
div.style.height = “200px”;
div.style.backgroundColor = "red";
}

//2 用函数绑定,不能写括号,否则成了返回值
div.onclick = fn;
function fn(){
alert(1);

//3.行内绑定
function fn() {
alert(1);
}

</script>

</body>
</html>

相关文章

网友评论

      本文标题:02事件的拓展

      本文链接:https://www.haomeiwen.com/subject/aihasxtx.html