HTML 发表说说 制作方法
2021-07-13 17:07
YPE html>
标签:width cti for pen resize har 读取 today txt
=======================================================================================================
$(".commonBtn").prop("disabled",txtval==""?true:false);//设定按钮
var str_length=0;//初始定义长度为0;
for(var i=0;i
else{str_length=str_length+1}//英文为1个字符
}
str_length=Math.ceil(str_length/2);//中英文相加除2 向下取整数(一个中文 + 一个英文)
var count=140-str_length;
if(count $(".countTxt").html(‘超出‘+Math.abs(count)+‘字‘);
$(".commonBtn").prop("disabled",true);
}else{
$(".countTxt").html("您还可以输入"+count+"字")
}
})
//--------------------------------------------------------
$(".commonBtn").click(function(){
var txt=$("textarea").val();
var inHTML="";
inHTML+=‘
‘
‘+txt+‘
‘+‘
‘顶 0‘+
‘踩 0‘+
‘
‘‘+
‘
$(inHTML).prependTo(".talkList");
$("textarea").val("");
$(".commonBtn").prop("disabled",true);
count=140;
$(".countTxt").html("您还可以输入"+count+"字");
var oDate=new Date();//读取当前时间
var year=oDate.getFullYear();//读取年份
var month=oDate.getMonth();//读取月份
var today=oDate.getDate();//读取日期
var hours=oDate.getHours();//读取小时
var min=oDate.getMinutes();//读取分钟
$("time").text(year+"-"+(month+1)+"-"+today+" "+hours+":"+min);
$(".toolsBar span").eq(0).click(function(){
var i=$(this).children("b").text();
i++;
$(this).children("b").text(i);
})
$(".toolsBar span").eq(1).click(function(){
var i=$(this).children("b").text();
i++;
$(this).children("b").text(i);
})
})
HTML 发表说说 制作方法
标签:width cti for pen resize har 读取 today txt
原文地址:http://www.cnblogs.com/lypyongpeng/p/7077565.html
上一篇:CSS3 过渡
下一篇:css sprite的实现