码迷,mamicode.com
首页 > Web开发 > 详细

jquery 之prop与attr

时间:2014-12-24 17:54:18      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

attr:属性值,代表着初始化的值

prop:可获得变动的值

select,check

eg:

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <script src="jquery.min.js"></script>
    <script type="text/javascript">
        function checkclick() { 
            console.log($(":checkbox").prop("checked"));//为ture与false交替
            console.log($(":checkbox").attr("checked"));//一直为checked
        }
        
         
    </script>
</head>

<body>
    <input type="checkbox"  checked="checked" onclick="checkclick();"/>
</body>
</html>

 

jquery 之prop与attr

标签:

原文地址:http://www.cnblogs.com/wangjiachen/p/4182750.html

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