<style>
#div1{
height:200px;
border: 1px solid red;
}
</style>
</head>
<body>
<input type="button" value="获取" id="getBtn">
<input type="button" value="设置" id="setBtn">
<div id="div1" style="width: 200px;"></div>
<div id="div2" style="width: 300px;"></div>
<div id="div3" style="width: 400px;"></div>
</body>
</html>
<script src="./jquery-1.12.4.js"></script>
<script>
$(document).ready(function(){
$("#getBtn").click(function(){
console.log($("#div1").css('width'));
console.log($("#div1").css('border-top-width'));
})
$("#div1").hide()
$("#div1").show()
$("#div").css({
width:300,
'height':'300px',
'background-color':'green',
'border':'1px solid red'
})
})
</script>