博客列表 >CSS美化留言板案例

CSS美化留言板案例

手机用户1594223549
手机用户1594223549原创
2022年11月12日 17:16:30661浏览

一.CSS美化留言板

1.输出结果

2.代码部分

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>CSS美化留言板</title>
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. box-sizing: border-box;
  13. }
  14. body {
  15. background-color: lightblue;
  16. max-height: 1120em;
  17. max-width: 1170px;
  18. margin: 0 auto;
  19. padding: 0 30px;
  20. }
  21. h3 {
  22. margin: 20px 10px;
  23. text-align: center;
  24. }
  25. input {
  26. display: block;
  27. width: 100%;
  28. min-height: 200px;
  29. margin-bottom: 20px;
  30. padding: 5px 10px 250px;
  31. }
  32. .list > li {
  33. display: flex;
  34. place-content: space-between;
  35. background-color: lightcoral;
  36. line-height: 36px;
  37. margin-bottom: 5px;
  38. border-radius: 3px;
  39. padding: 0 10px;
  40. }
  41. .list > li > button {
  42. border-radius: 5px;
  43. margin: 5px 0;
  44. border: 1px;
  45. width: 40px;
  46. }
  47. </style>
  48. </head>
  49. <body>
  50. <h3>留言板</h3>
  51. <input type="text" onkeydown="insertComment(this)" placeholder="请输入您的留言" autofocus/>
  52. <ul class="list"></ul>
  53. </body>
  54. <script>
  55. const insertComment = function (ele) {
  56. if (event.key === 'Enter') {
  57. // 1. 非空判断 event指事件对象
  58. if (ele.value.length === 0) {
  59. alert('留言不能为空')
  60. // 重置焦点
  61. ele.focus();
  62. // 直接返回
  63. return false;
  64. }
  65. // 2. 添加留言
  66. const ul = document.querySelector('.list');
  67. ele.value += `<button onclick="del(this.parentNode)">删除</button>`;
  68. ul.insertAdjacentHTML('afterbegin', `<li>${ele.value}</li>`);
  69. // 3. 清空输入框
  70. ele.value = null;
  71. }
  72. };
  73. // 删除
  74. const del = function(ele) {
  75. return confirm('是否删除?') ? (ele.outerHTML = null) : false;
  76. };
  77. </script>
  78. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议