Blogger Information
Blog 7
fans 0
comment 0
visits 5091
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
jQuery对象的参数与基本语法,ready()事件注册实例
phpcn_u68463的博客
Original
502 people have browsed it

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title></title>

<script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js" type="text/javascript" charset="utf-8"></script>

<script type="text/javascript">

$(document).ready(function(){

$(document).ready(function () {

            $(document.body).css('background','lightgreen')

        })

})

</script>

</head>

<body>

<p>JQuery第一天</p>

<img src="images/1.png"/>

<script type="text/javascript">

$('p').css('color','red')

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

$('p').css('color','blueviolet')

})

$('img').mouseenter(function(){

$(this).hide(1000)

}).mouseleave(function(){

$(this).show(1000)

})

</script>

</body>

</html>

2017-12-24_192818.png

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!