在HTML文档中使用JQuery将HTML插入到DIV元素中,可以使用以下代码:
<div id="myDiv"></div>
<script>
$(document).ready(function(){
$("#myDiv").html("<h1>Hello, World!</h1>");
});
</script>
上述代码中,使用<div>
元素创建了一个ID为myDiv
的DIV元素,然后在<script>
标签中,使用JQuery的html()
方法将<h1>
元素插入到DIV元素中,并设置内容为Hello, World!
。
完整代码如下:
<!DOCTYPE html>
<html>
<head>
<title>Inserting HTML with JQuery</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script>
$(document).ready(function(){
$("#myDiv").html("<h1>Hello, World!</h1>");
});
</script>
</head>
<body>
<div id="myDiv"></div>
</body>
</html>
在上述代码中,<div>
元素中的IDmyDiv
被设置为了#myDiv
,然后在<script>
标签中,使用JQuery的html()
方法将<h1>
元素插入到DIV元素中,并设置内容为Hello, World!
。
领取专属 10元无门槛券
手把手带您无忧上云