您好,登錄后才能下訂單哦!
小編給大家分享一下原生js如何實現提交評論,顯示評論的效果,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <style> #box{ width: 900px; margin: 0 auto; } #text{ width: 900px; height: 400px; margin: 0 auto; background-color: #fbe1c8; margin-top: 60px; outline: none; border-radius: 8px; border:2px solid #e59a56; overflow: hidden; } #tup{ float: right; display: block; margin-top: 10px; margin-left: 20px; width: 60px; height: 36px; background-color: #e69b57; font-size: 18px; line-height: 36px; border-radius: 6px; text-align: center; color: #ffffff; cursor:pointer; } #wad{ margin-top: 60px; width: 880px; } #wad p{ font-size: 18px; line-height: 24px; border-bottom: 1px dashed #e69b57; word-wrap: break-word; } </style> </head> <body> <div id="box"> <div id="text" contenteditable="true"></div> <span id="tup">提交</span> <div id="wad"></div> </div> <script> let Text = document.getElementById('text'), Tup = document.getElementById("tup"), Pl = document.getElementById("wad"); Tup.onclick = function(){ Li = "<p>" + Text.innerHTML + "</p>"; Text.innerHTML = ""; Pl.innerHTML += Li ; } </script> </body> </html>
以上是原生js如何實現提交評論,顯示評論的效果的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。