小小小小小鲸鱼
2017-04-04 20:27
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>第一个简单的jQuery程序</title>
<style type="text/css">
div{
padding:8px 0px;
font-size:12px;
text-align:center;
border:solid 1px #888;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("div").html("hello world");
});
</script>
</head>
<body>
<div></div>
</body>
</html>
hello world已经被渲染了啊,居中,字体大小,边框等
ele.html( )就是把html()里面的内容渲染到ele里面
楼上正解
jQuery基础 (一)—样式篇
217509 学习 · 1218 问题
相似问题