您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“js如何實(shí)現(xiàn)微博發(fā)布小功能”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“js如何實(shí)現(xiàn)微博發(fā)布小功能”這篇文章吧。
微博發(fā)布功能,可發(fā)布可刪除。樣式?jīng)]設(shè)置忽略,主要知識(shí)點(diǎn)及注意點(diǎn):
1、動(dòng)態(tài)添加節(jié)點(diǎn)標(biāo)簽。
2、內(nèi)容為空時(shí)不能發(fā)布。
3、新發(fā)布的內(nèi)容要在上面。
4、內(nèi)容刪除要同時(shí)刪除掉節(jié)點(diǎn)。
5、為保持樣式輸入框要設(shè)置為不可拖拽。
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Document</title> <style> * {margin: 0;padding: 0;} .box{ border: 1px solid #000; width: 600px; height: auto; margin:100px auto; padding:30px 0; } textarea{ width: 450px; resize:none; margin-left: 20px; } ul li{ width: 450px; list-style: none; border-bottom: 1px dotted #ccc; margin-left:20px; line-height: 30px; color: #333; } ul li a{ float: right; font-size: 12px; } </style> <script src="../jquery-1.11.1.min.js"></script> <script type="text/javascript"> // 方法1 window.onload = function () { var box = document.getElementById("box"); var boys=box.children; var ul = document.createElement("ul"); box.appendChild(ul); boys[2].onclick = function (){ if(boys[1].value==""){ alert("輸入不能為空"); return; } var newli= document.createElement("li"); newli.innerHTML=boys[1].value+"<a href='javascript:;'>刪除</a>"; boys[1].value =""; var lis=ul.children; if(lis.length==0){ul.appendChild(newli);}else{ ul.insertBefore(newli, lis[0]); } var as=document.getElementsByTagName("a"); for (var i=0;i<as.length;i++){ as[i].onclick=function(){ ul.removeChild(this.parentNode); } } } } // 方法2 引用jQuery // $(function(){ // $("<ul></ul>").appendTo("#box"); // var $text = $("#box").find("textarea"); // var $btn = $("#box").find("button"); // $btn.on("click",function(){ // if($text.val() ==""){ // alert("請(qǐng)輸入內(nèi)容"); // return; // } // $("ul").prepend("<li>"+$text.val()+"<a href='javascript:;'>刪除</a></li>"); // $text.val(""); // $("a").on("click",function(){ // $(this).parent("li").remove(); // }) // }) // }) </script></head><body> <div class="box" id="box"> 微博發(fā)布:</br><textarea cols="30" rows="10"></textarea> <button>發(fā)布</button> </div></body></html>
以上是“js如何實(shí)現(xiàn)微博發(fā)布小功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。