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

jQuery学习总结05-事件

时间:2018-07-10 21:25:19      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:nbsp   bin   div   pre   charset   function   pen   alert   增加   

1.事件的发生

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <input id="t1" type="text" />
    <input id="a1" type="button" value="添加" />

    <ul id="u1">
        <li>1</li>
        <li>2</li>
    </ul>
<script src="jquery-1.12.4.js"></script>
    <script>
        $(#a1).click(function () {
            var v = $(#t1).val();
            var temp = "<li>" + v + "</li>";
            $(#u1).append(temp);
        });

//        $(‘ul li‘).click(function () {
//            var v = $(this).text();
//            alert(v);
//        })

//        $(‘ul li‘).bind(‘click‘,function () {
//            var v = $(this).text();
//            alert(v);
//        })

//        $(‘ul li‘).on(‘click‘, function () {
//            var v = $(this).text();
//            alert(v);
//        })

       //以上对于新增加的标签,都无法添加点击事件,只有如下可以
        $(ul).delegate(li,click,function () {
            var v = $(this).text();
            alert(v);
        })

    </script>
</body>
</html>    

 2.

jQuery学习总结05-事件

标签:nbsp   bin   div   pre   charset   function   pen   alert   增加   

原文地址:https://www.cnblogs.com/it-q/p/9291273.html

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