<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>环境搭建</title>
</head>
<script type="text/javascript" src="../js/jquery.min.js"></script>
<style type="text/css">
#info{
width:500px;
height:500px;
background-color:red;
display:none;
}
</style> 

<script type="text/javascript">

$(function(){
$("#btn").click(function(){
$("#info").show(2000);
});
});

</script>

<body>
<input type="button" value="测试" id="btn">
<div id="info"></div>
</body>

</html>

搭建

相关文章:

  • 2021-08-12
  • 2021-12-23
  • 2021-07-25
  • 2021-10-19
  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-17
  • 2022-12-23
  • 2022-12-23
  • 2021-08-24
  • 2022-12-23
  • 2021-09-26
  • 2021-10-27
相关资源
相似解决方案