本篇内容主要讲解“怎么用jQuery实现发布微博程序”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“怎么用jQuery实现发布微博程序”吧!
创新互联专注于莱芜网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供莱芜营销型网站建设,莱芜网站制作、莱芜网页设计、莱芜网站官网定制、小程序设计服务,打造莱芜网络公司原创品牌,更为您提供莱芜网站排名全网营销落地服务。
XHTML代码
Demo发布的内容...
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文件:
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(''); $.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实现发布微博程序”有了更深的了解,不妨来实际操作一番吧!这里是创新互联网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!