PHP+MySQL+jQuery实现发布微博程序
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-23
交则会提示用户要求输入内容。
CSS代码 h3{height:32px; line-height:32px; font-size:18px}h3 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 &n |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: PHP最主要的7个安全漏洞下一篇: PHP 检测手机浏览器的代码
关于PHP+MySQL+jQuery实现发布微博程序的所有评论