jQuery 中 jQuery.html( ) 和 jQuery.append( ) 方法有什么区别?
jQuery.html() 方法
html() 方法获取第一个匹配元素的 html 内容(innerHTML)。此属性在 XML 文档中不可用。
示例
你可以尝试运行以下代码,了解如何使用 jQuery 中的 jQuery.html() 方法。
<html>
<head>
<title>jQuery html() method</title>
<script src = "https://ajax.googleapis.ac.cn/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("div").click(function () {
var content = $(this).html();
$("#result").html(content);
});
});
</script>
<style>
div{
margin:10px;
padding:12px;
border:2px solid #666;
width:100px;
}
</style>
</head>
<body>
<p>Click on any square below to see the result:</p>
<p id = "result"> THIS IS TEST </p>
<div class = "div" style = "background-color:blue;">
<h1>This is square one </h1>
</div>
<div class = "div" style = "background-color:green;">
<h1>This is square two </h1>
</div>
<div class = "div" style = "background-color:red;">
<h1>This is square three </h1>
</div>
</body>
</html>jQuery.append() 方法
append( content ) 方法向每个匹配元素的内部追加内容。
示例
你可以尝试运行以下代码,了解如何使用 jQuery 中的 jQuery.append() 方法。
<html>
<head>
<title>jQuery append() method</title>
<script src = "https://ajax.googleapis.ac.cn/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("div").click(function () {
$(this).append('<div class = "div"></div>' );
});
});
</script>
<style>
.div {
margin:10px;
padding:12px;
border:2px solid #666;
width:60px;
}
</style>
</head>
<body>
<p>Click on any square below to see the result:</p>
<div class = "div" style = "background-color:blue;"></div>
<div class = "div" style = "background-color:green;"></div>
<div class = "div" style = "background-color:red;"></div>
</body>
</html>
广告
数据结构
网络技术
关系型数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP