码迷,mamicode.com
首页 > 其他好文 > 详细

checkBox的使用和事件监听

时间:2016-07-01 17:59:50      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:

直接上代码:

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
    <script>
        function onClickHander(obj){
            if(obj.checked){
                console.log("selected");
            }else{
                console.log("unselected");
            }
            
        }
    </script>
<body>
    <input id="checkBox" type="checkbox" onclick="onClickHander(this)"></input>
</body>
</html>

1、绑定事件时记得加上this,把节点对象传入;

2、利用节点的checked属性,可判断当前是否已选中。

就是这样~

愉快的周五 : )

checkBox的使用和事件监听

标签:

原文地址:http://www.cnblogs.com/Being-a-runner-up/p/5633834.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!