批改状态:合格
老师批语:如果想使用jQuery就应该尽可能使用jQ语法去写, 如果与原生混用, 会出现一些很隐蔽的bug
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery留言板</title>
</head>
<body>
<label for="comment">请留言:</label>
<input type="text" id="comment" autofocus>
<ul id="list">
</ul>
<script src="jquery-3.4.1.min.js"></script>
<script>
$(document).ready(function()
{
var comment = document.getElementById('comment');
comment.addEventListener('keypress', addComment, false);
function addComment(event)
{
if (event.key === 'Enter')
{
$("#list").prepend("<li>" + comment.value + "</li>");
}
// comment.value = null;
}
} )
</script>
</body>
</html>点击 "运行实例" 按钮查看在线实例

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号