91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么用jQuery實現發布微博程序

發布時間:2021-09-04 15:10:28 來源:億速云 閱讀:202 作者:chen 欄目:web開發

本篇內容主要講解“怎么用jQuery實現發布微博程序”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“怎么用jQuery實現發布微博程序”吧!

XHTML代碼

<form id="myform" action="say.php" method="post">          <h4><span class="counter">140</span>說說你正在做什么...</h4>          <textarea name="saytxt" id="saytxt" class="input" rows="2" cols="40"></textarea>          <p>                <input type="image" src="images/btn.gif" class="sub_btn" alt="發布" />                <span id="msg"></span>          </p>   </form>   <div class="clear"></div>   <div id="saywrap">            <div class="saylist">                  <a href="#"><img src="images/user.gif" alt="" /></a>                  <div class="saytxt">                         <p><strong><a href="#">Demo</a></strong>發布的內容...</p>                          <div class="date"></div>                  </div>                  <div class="clear"></div>            </div>   </div>

XHTML是一個表單,里面有輸入框textarea,發布按鈕,還有一個統計輸入字數的span#counter,和信息提示span#msg,在沒有輸入的情況下就提交則會提示用戶要求輸入內容。

CSS代碼

h4{height:32px; line-height:32px; font-size:18px}   h4 span{float:right; font-size:32px; font-family:Georgia,serif; color:#ccc; overflow:hidden}   .input{width:594px; height:58px; margin:5px 0 10px 0; padding:4px 2px;    border:1px solid #aaa; font-size:12px; line-height:18px; overflow:hidden}   .sub_btn{float:right; width:94px; height:28px;}   #msg{color:#f30}   .clear{clear:both}   .saylist{margin:8px auto; padding:4px 0; border-bottom:1px dotted #d3d3d3}   .saylist img{float:left; width:50px; margin:4px}   .saytxt{float:right; width:530px; overflow:hidden}   .saytxt p{line-height:18px}   .saytxt p strong{margin-right:6px}   .date{color:#999}

jQuery

先引入jquery庫和global.js文件:

<script type="text/javascript" src="js/jquery.js"></script>   <script type="text/javascript" src="js/global.js"></script>

global.js要做的事有:

1、用戶輸入、鼠標離開輸入框時,統計輸入的字符數,并根據輸入字數的不同而輸出不同的樣式(字體顏色)顯示在頁面上。

2、處理提交數據:當點擊“發布”按鈕時,顯示等待圖片,通過ajax想后臺提交輸入的數據,等待后臺處理,并將處理結果輸出給前端頁面。

具體代碼如下:

function recount(){          var maxlen=140;          var current = maxlen-$('#saytxt').val().length;          $('.counter').html(current);            if(current<1 || current>maxlen){                  $('.counter').css('color','#D40D12');                  $('input.sub_btn').attr('disabled','disabled');          }          else                 $('input.sub_btn').removeAttr('disabled');           if(current<10)                 $('.counter').css('color','#D40D12');           else if(current<20)                 $('.counter').css('color','#5C0002');           else                 $('.counter').css('color','#cccccc');    }

函數recount()完成了輸入字符的統計,并根據輸入的字符數,顯示不同的字體顏色。

$(function(){          $('#saytxt').bind("blur focus keydown keypress keyup", function(){                  recount();          });          $("#myform").submit(function(){                  var saytxt = $("#saytxt").val();                  if(saytxt==""){                            $("#msg").show().html("你總得說點什么吧.").fadeOut(1200);;                            return false;                  }                  $('.counter').html('<img style="padding:8px" src="images/load.gif" alt="正在處理..." />');                  $.ajax({                           type: "POST",                           url: "submit.php",                           data:"saytxt="+saytxt,                           dataType: "html",                           success: function(msg){                                  if(parseInt(msg)!=0){                                        $('#saywrap').prepend(msg);                                        $('#saytxt').val('');                                        recount();                                 }                     }               });               return false;          });   });

提交數據給后臺后,由submit.php進行處理。

到此,相信大家對“怎么用jQuery實現發布微博程序”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乐昌市| 宁国市| 郯城县| 政和县| 布尔津县| 牙克石市| 贡山| 榆中县| 墨江| 师宗县| 吉安县| 长白| 霍山县| 凉山| 同江市| 丽江市| 淮北市| 神农架林区| 车致| 平陆县| 宁明县| 甘泉县| 漳州市| 日照市| 全州县| 马关县| 德昌县| 东乡族自治县| 阜南县| 高邮市| 昌平区| 芮城县| 白银市| 三台县| 余姚市| 延长县| 绥德县| 嘉鱼县| 台东县| 宜良县| 策勒县|