亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

jq屬性和事件的練習(xí)

original 2018-11-10 19:10:33 191
abstrait:<!DOCTYPE html><html><head><meta charset="UTF-8"><title>Document</title><script src="https://code.jquery.com/jquery-3.1.1.min.js"></scr

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Document</title>

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>

    <style>

        .red{

            color: red;

        }

    </style>

    <script type="text/javascript">

        $(function(){

         $('.btn1').click(function(){

                $('p').toggleClass('red')

                $('span').text('hello word')

                $('h3').html('<h1>我變成h1標(biāo)題</h1>')

         $('p').animate({'fontSize':'40px'},3000)

         $('div').animate({'left':'400px'},1000)

         })

            $('.btn2').click(function(){


             $('div').animate({

             'height':'400px',

             'width':'300px',

             'opacity':'0.3'

             },1000)

            })


            $('.btn3').click(function(){

                $('input').val('改變了里面的內(nèi)容')

            })

          

        })

    </script>

    <style type="text/css">

        div{width:100px;height:100px;background:red;}

    </style>

</head>

<body>

      

<button class="btn1">點(diǎn)擊字體變大</button>

<p>賽第六屆泛咖啡颯颯的浪費(fèi)大聲道</p>

    <span style="display:block;margin:30px;">速度快撒颯颯的</span>

    <h3>我是標(biāo)題3</h3>


<button class="btn2">盒子改變</button>

<div></div>


    <button class="btn3" style="width:50px;height:30px;display:block;margin-top:30px";>val值</button>

    <input type="text" value="值">

</body>

</html>


Notes de version

Entrées populaires