为什么显示不出来 我在自己编辑器上可以
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Document</title>
<style>
#box{width:400px;height:400px;border:1px solid red;text-align:center;}
.child{width:300px;height:300px;margin:0 auto;margin-bottom:50px;}
</style>
</head>
<body>
<div id="box">
<div class="child"></div>
<input type="button" value="按钮1" class="btn1"/>
<input type="button" value="按钮2" class="btn2"/>
</div>
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
<script>
//补充代码
$('.btn1').click(function(){
$('.child').css({
'background-color':'pink',
'margin-bottom':50
})
})
$('.btn2').click(function(){
$('.child').css({
width:'-=100',
height:'-=100'
})
})
</script>
</body>
</html>
正在回答 回答被采纳积分+1
- 参与学习 人
- 提交作业 11218 份
- 解答问题 36713 个
从一个不会编程的小白到一个老司机是需要过程的,首先得入门,学习基础知识,然后才能进阶,最后再到精通,本专题是你走进前端世界的不二选择!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星