如何使用jQuery动态创建div?
要动态创建div,请使用html()
方法。您可以尝试运行以下代码,以了解如何在单击按钮时动态创建div-
示例
<!DOCTYPE html><html>
<head>
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("body").html("<div>This is a new div.</div>");
});
});
</script>
</head>
<body>
<button>Create a new div</button>
<p>This is demo text.</p>
</body>
</html>
以上是 如何使用jQuery动态创建div? 的全部内容, 来源链接: utcz.com/z/321678.html