<html>
<head>
<script src="js/jquery.js"></script>
<script src="js/test.js"></script>
<meta charset="utf-8" />
<title>jquery css</title>
</head>
<body >
<div id="app">
<button id="btn"></button>
</div>
<div id="singlestyle">
<button id="btn"></button>
</div>
</body>
<script>
$(function(){
//选择#singlestyle下 #btn 更改样式
$("#singlestyle #btn").text("你好")
//选择#singlestyle和 #app 更改样式
$("#app,#singlestyle").css({
"width":"200px",
"height":"200px",
"background-color":"pink",
"margin-top":"20px"
})
})
</script>
</html>
网友评论