Blogger Information
Blog 25
fans 0
comment 0
visits 15826
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0718改留言板
杨发国的博客
Original
447 people have browsed it

 

实例

<!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>

运行实例 »

点击 "运行实例" 按钮查看在线实例

18.png

 

Correction status:qualified

Teacher's comments:如果想使用jQuery就应该尽可能使用jQ语法去写, 如果与原生混用, 会出现一些很隐蔽的bug
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post