php+mysql+jquery实现发布微博程序.docVIP

  • 1
  • 0
  • 约7.06千字
  • 约 7页
  • 2016-01-02 发布于山西
  • 举报
phpmysqljquery实现发布微博程序

PHP+Mysql+jQuery实现发布微博程序--jQuery篇 我们在QQ个人中心或者新浪微博等网站上可以看到一个发表话题的应用。该应用实现了即时统计输入字数,并且通过ajax与后台交互,将输入内容插入到话题列表中。我将整个流程分为两部分,本文讲解第一部分jquery实现前端交互操作。 ? XHTML ? form?id=myform?action=say.php?method=post? ???h3span?class=counter140/span说说你正在做什么.../h3? ???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? ??????????pstronga?href=#Demo/a/strong发布的内容.../p? ???????????div?class=date/div? ???????/div? ???????div?class=clear/div? ????/div? /div? XHTML是一个表单,里面有输入框textarea,发布按钮,还有一个统计输入字数的span#counter,和信息提示span#msg,在没有输入的情况下就提交则会提示用户要求输入内容。 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文件: global.js要做的事有: 1、用户输入、鼠标离开输入框时,统计输入的字符数,并根据输入字数的不同而输出不同的样式(字体颜色)显示在页面上。 2、处理提交数据:当点击“发布”按钮时,显示等待图片,通过ajax想后台提交输入的数据,等待后台处理,并将处理结果输出给前端页面。 具体代码如下: ? function?recount(){? ????var?maxlen=140;? ????var?current?=?maxlen-$(#saytxt).val().length;? ????$(.counter).html(current);? ? ????if(current1?||?currentmaxlen){? ????????$(.counter).css(color,#D40D12);? ????????$(input.sub_btn).attr(disabled,disabled);?

文档评论(0)

1亿VIP精品文档

相关文档