优化<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>微博发布功能</title> <style> *{margin:0; padding:0 } #weibo{ width: 600px; padding:10px; border: 1px solid #000; margin:100px auto 0; } #weibo textarea{ width: 455px; height: 165px; resize:none; vertical-align: bottom; } #weibo button{ width: 40px; height: 24px; vertical-align: bottom; } #weibo ul{ margin:20px 20px 20px 90px; } #weibo li{ line-height: 24px; list-style-type:none; border-bottom:1px dashed #ccc; word-break:break-all; /*自动换行*/ } </style> </head> <body> <div id="weibo"> 微博内容: <textarea></textarea> <button>发布</button> <ul> <li></li> </ul> </div> <script src="../jquery-3.7.0.js"></script> <script> $('button').click(function(){ // 1.拿到输入的内容 var res=$('textarea').val(); if(res!=''){ // console.log(res); // 2.创建孤儿元素 var oLi=$('<li>'+res+'</li>'); //3.添加元素 $('ul').prepend(oLi); //4.清空文本域 $('textarea').val(''); }else{ alert('请输入内容'); } }); </script> </body> </html>
时间: 2024-04-03 10:31:50 浏览: 50
html5调用摄像头功能的实现代码
这段代码的优化可以从以下几个方面入手:
1. 将 script 标签放到 HTML 最后面,这样可以避免浏览器在渲染页面时被 JS 阻塞,提高页面加载速度。
2. 避免频繁操作 DOM,可以先将需要添加的元素存储在一个变量中,最后再添加到页面中。
3. 考虑使用事件委托,将事件绑定到父元素上,而不是每个子元素都绑定一次,这样可以提高性能。
4. 考虑使用模板引擎,可以更方便地生成 HTML 代码,避免代码重复和拼接字符串的问题。
阅读全文