码迷,mamicode.com
首页 > 其他好文 > 详细

01jquey基础

时间:2017-11-10 01:41:15      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:ref   nbsp   styles   class   方法表   src   方法   标签   htm   

1.html代码

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<script type="text/javascript" src="jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="01.js"></script>
<link type="text/css" href="css.css" rel="stylesheet"/>
</head>

<body>
    <p>哈哈</p>
    <p>哈哈</p>
    <p>哈哈</p>
    <p>哈哈</p>
</body>
</html>

2.css代码

p
{
    background-color:red;
}

3.jQuery代码

$(document).ready(function() {//ready(function() 网页加载完成之后
    alert("文档加载完毕");//弹出对话框
    
    $("p").click(function(){    //此方法表示点击那个p标签,那个p标签就隐藏
        $(this).hide();
    })
});

 

01jquey基础

标签:ref   nbsp   styles   class   方法表   src   方法   标签   htm   

原文地址:http://www.cnblogs.com/xiaojiujiu1999/p/7812058.html

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