JQuery获取⽂本框中字符长度的代码
趁我写例⼦这点时间有两个⼈回答了呵呵
刚才试验过了看下例⼦吧
JS ⽅法:
复制代码代码如下:
<script type="text/javascript">
// 得到字符串的真实长度(双字节换算为两个单字节)
function getStrActualLen(sChars)
{
//place(/[^ 00- ff]/g,"xx").length/1024+"字节";
//place(/[^ 00- ff]/g,"xx").length/1024);这个貌似不好使
return alert(place(/[^ 00- ff]/g,"xx").length/1024,4));
}
//格式化⼩数,并四舍五⼊。如:formatNum(100.12345678,4)
function formatNum(Num1,Num2){
if(isNaN(Num1)||isNaN(Num2)){
return(0);
}else{
String();
Num2=parseInt(Num2);
if(Num1.indexOf('.')==-1){
return(Num1);
}else{
var b=Num1.substring(0,Num1.indexOf('.')+Num2+1);
var c=Num1.substring(Num1.indexOf('.')+Num2+1,Num1.indexOf('.')+Num2+2);
if(c==""){
return(b);
}else{
if(parseInt(c)<5){
return(b);
}else{
return((und(parseFloat(b)*Math.pow(10,Num2))+und(parseFloat(Math.pow(0.1,Num2).toString().substring(0,Math.pow(0.1,Num2).toString().indexOf('.')+Num2+1))*Math.pow(10,Num2)))/Math.pow(10,N }
}
}
}
}
Jquery⽅法:
复制代码代码如下:
function getStrActualLen(){
var count=$("#sChars").val().length/1024;
und(count*Math.pow(10,4));
}
jquery 截取字符串长度
jquery 可以⽤text()⽅法来取得字符串,再⽤length 判断长度,然后⽤substring()⽅法格式化截断后加'...'省略号。
复制代码代码如下:
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' '/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='/1999/xhtml'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=gb2312' />
<title>cookie</title>
<script src='img.jb51/jslib/jquery/jquery-1.3.2.min.js' type='text/javascript'></script>
<style>
*{ margin:0; padding:0;font-family:'宋体',Arial, Helvetica, sans-serif;}
#best{ width:300px; height:200px; border:1px solid #ccc; margin:60px auto 0; line-height:1.6; font-size:14px; padding:10px 0 0 10px}
.blank{ font-size:18px; font-weight:bold; text-align:center; padding:20px}
</style>
<script type='text/javascript'>
jQuery.fn.limit=function(){
var self = $('div[limit]');
self.each(function(){
var objString = $(this).text();
jquery字符串截取var objLength = $(this).text().length;
var num = $(this).attr('limit');
if(objLength > num){
$(this).attr('title',objString);
objString = $(this).text(objString.substring(0,num) + '...');
}
})
}
$(function(){
$(document.body).limit();
})
</script>
</head>
<body>
<div class='blank'>请按F5刷新页⾯。。。。</div>
<div id='best'>
<div limit='12'>字符串字符串字符串字符串字符串字符串字符串字符串字符串</div>
<div limit='10'>字符串字符串字符串字符串字符串字符串字符串</div>
<div limit='12'>字符串字符串字符串字符串字符串</div>
<div limit='12'>字符串字符串字符串字符串字符串字符串字符串字符串</div>
<div limit='10'>字符串字符串字符串字符串字符串字符串字符串</div>
</div>
</body>
</html>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论