您好,登錄后才能下訂單哦!
這篇文章主要介紹了JavaScript實現留言板的方法,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
具體內容如下
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>留言板</title> <style type="text/css"> #div1{ width: 400px; height: 200px; background-color: antiquewhite; } span{ color: blue; text-decoration: underline; } </style> </head> <body> <div id="div1"> 姓名:<input type="text" name="user" id="username" /><br /> 內容:<textarea rows="10" cols="40" id="info"> </textarea> <input type="button" value="留言" id="btn" /><br /> </div> <h4>留言板</h4><br /> <div id="div2"> </div> </body> <script type="text/javascript"> var userInput = document.getElementById("username"); var infoInput = document.getElementById("info"); var btn = document.getElementById("btn"); var div2 = document.getElementById("div2"); btn.onclick = function(){ var user = userInput.value; var info = infoInput.value; var divUser = document.createElement("div"); divUser.innerText = user; divUser.style.backgroundColor = "darkgrey"; divUser.style.width = "400px"; divUser.style.height = "30px"; div2.appendChild(divUser); var divInfo = document.createElement("div"); divInfo.innerText = info; divInfo.style.backgroundColor = "antiquewhite"; divInfo.style.width = "400px"; divInfo.style.height = "80px"; div2.appendChild(divInfo); var del = document.createElement("span"); del.innerText = "刪除"; del.style.float = "right"; divInfo.appendChild(del); del.onclick = function(){ divUser.remove(); divInfo.remove(); del.remove(); } } </script> </html>
showtime:
點擊刪除,可以刪除留言:
感謝你能夠認真閱讀完這篇文章,希望小編分享的“JavaScript實現留言板的方法”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。