WEB 教程
实践 示例
HTML 参考手册
CSS 参考手册
PHP 参考手册

如何使用 jQuery 替换 Div 的 innerHTML

主题:JavaScript / jQuery上一页|下一页

答案:使用jQuery html()方法

您可以简单地使用 jQuery html() 方法来替换 div 或任何其他元素的 innerHTML。

以下示例中的 jQuery 代码将在单击按钮时将具有 id pageTitle 的 DIV 元素的 innerHTML 替换为 HTML 标题。 让我们试一试:

<!DOCTYPE html>
<html lang="en">
<head>
<title>jQuery Replace innerHTML of a Div</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        $("#pageTitle").html("<h1>Hello, World!</h1>");
    });
});
</script>
</head>
<body>
    <div id="pageTitle">
        <p><b>Click the following button to replace me.</b><p>
    </div>
    <button type="button">Replace HTML</button>
</body>
</html>

FAQ 相关问题解答

以下是与此主题相关的更多常见问题解答:

Advertisements