html(val )
优质
小牛编辑
134浏览
2023-12-01
描述 (Description)
html( val )方法设置每个匹配元素的html内容。 此属性不适用于XML文档,但适用于XHTML文档。
语法 (Syntax)
以下是使用此方法的简单语法 -
<i>selector</i>.html( val )
参数 (Parameters)
以下是此方法使用的所有参数的说明 -
val - 任何字符串
例子 (Example)
以下示例将获取第一段的HTML内容并将其显示在第二段中。 请检查html()方法的描述。
<html>
<head>
<title>The Selecter Example</title>
<script type = "text/javascript"
src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
</script>
<script type = "text/javascript" language = "javascript">
$(document).ready(function() {
var content = $("p").html();
$("#pid2").html( content );
});
</script>
<style>
.red { color:red; }
.green { color:green; }
</style>
</head>
<body>
<p class = "green" id = "pid1">This is first paragraph.</p>
<p class = "red" id = "pid2">This is second paragraph.</p>
</body>
</html>