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

jQuery - 点击图片加边框

时间:2017-03-24 23:33:27      阅读:483      评论:0      收藏:0      [点我收藏+]

标签:logs   lap   class   show   on()   span   nbsp   htm   char   

 

技术分享
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>为图片添加边框</title>
    <script type="text/javascript" src="./js/jquery-1.8.3.min.js"></script>
    <script type="text/javascript">
        //方法1 使用css()方法
//        $(function(){
//            $("img").eq(0).click(function(){
//                $(this).css("border","1px solid red");
//            })
//        })
        //方法2 使用addClass()方法
        $(function(){
            $("img").click(function(){
                $(this).addClass(border);
            })
        })

    </script>
    <style type="text/css">
        .border{border:1px solid #ccc;}
    </style>
</head>
<body>
<img src="./images/pic.gif" />
</body>
</html>
点击图片加边框.html

 

jQuery - 点击图片加边框

标签:logs   lap   class   show   on()   span   nbsp   htm   char   

原文地址:http://www.cnblogs.com/xtdxs/p/6613579.html

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