在我的代码中,我做了类似的事情
$("#jdoe").append("<h3>Test</h3>");
html
<html>
<head>
</head>
<body>
<div id="jdoe"></div>
</body>
</html>
它按预期工作(文本测试显示在 h3 中),我期待如果我在浏览器中查看源代码,我会看到类似
<html>
<head>
</head>
<body>
<div id="jdoe"><h3>Test</h3></div>
</body>
</html>
如果我的期望是错误的,请纠正我