jQuery选择器_Dom操作_样式_事件处理

2017-04-09  本文已影响0人  S级食材咩咩羊

1.说说库和框架的区别?

2.jquery 能做什么?

3.jquery 对象和 DOM 原生对象有什么区别?如何转化?

4.jquery中如何绑定事件?bind、unbind、delegate、live、on、off都有什么作用?推荐使用哪种?使用on绑定事件使用事件代理的写法?

$('button').on('click',function(){
     $('.test').append('<p>新增内容'+ ($('p').length+1) +'</p>')
      console.log($('p').length)

5.jquery 如何展示/隐藏元素?

$(document).ready(function(){
    $('.show').on('click',function(){
        $('.hide').show();
    })
    $('.hide').on('click',function(){
        $('.hide').hide();
    });
})

6.jquery 动画如何使用?

<!DOCTYPE html>
<html>
<head>
    <script src="//code.jquery.com/jquery-1.9.1.min.js"></script>
    <meta charset="utf-8">
    <title>JS Bin</title>
    <style>
        #ct {
            border: 1px solid black;
            width: 100px;
            height: 100px;
            background: red;
            position: relative;
        }
    </style>
</head>
<body>
    <div id="ct">animate</div>
    <button type="button">动画</button>
    <script src="http://cdn.bootcss.com/jquery/1.11.2/jquery.min.js"></script>
    <script>
        $('button').on('click', function a() {
            $('#ct').animate({
                left: '300px',
            }, 3000);
            $('#ct').animate({
                top: '300px',
                left: '0'
            }, 'slow');
            $('#ct').animate({
                left: '300'
            }, 'slow');
            $('#ct').animate({
                left: '0',
                top: '0'
            }, 'slow');
        });
    </script>
</body>
</html>

7.如何设置和获取元素内部 HTML 内容?如何设置和获取元素内部文本?

8.如何设置和获取表单用户输入或者选择的内容?如何设置和获取元素属性?

上一篇下一篇

猜你喜欢

热点阅读