返回jQuery基......登陆

jQuery基本语法练手

虎哥2019-02-06 17:58:51259

在这节课我在写的时候犯了很严重的一个错误。路径错了。致命呀。半个多小时才找到问题。路程还远着呢,还需努力。路径对了,怎么都好弄。呵呵

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta http-equiv="X-UA-Compatible" content="ie=edge">

<title>Document</title>

<script src="jquery/jquery-3.3.1.js"></script>

</head>

<body>

<script>

$(document).ready(function(){

/* $str='我是一个变量';

           alert($str); */

$('#yc').click(function(){

$('.box').hide();

})

$('#xs').click(function(){

$('.box').show();

})

})

</script>

<style>

.box{width: 200px;height: 200px;background: pink;margin: 50px;}

</style>

<div class="box"></div>

<button id="xs">显示</button>

<button id="yc">隐藏</button>

</body>

</html>


最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送