我在尝试在页面底部添加一些额外的HTML但在BODY标记内时遇到了一些问题。我可以在底部添加HTML,但它不在BODY标记之外。有人可以帮帮我吗?
这是我的代码:
<html>
<head>
<script src="js/jquery.js"></script>
<script>
window.onload=function(){
$('body').after('<div>footer</div>');
};
</script>
</head>
<body>
<div>Page content</div>
</body>
</html>
结果是:
<body>
<div>Page content</div>
</body>
<div>footer</div>
但我需要它:
<body>
<div>Page content</div>
<div>footer</div>
</body>
感谢您的帮助!