.classname { width:240px; height:3em; overflow:hidden; ←あふれた文字に関しては隠す }
文字列を省略する
@arg text 省略する文字列
@arg len 半角文字数で指定
@arg truncation 省略時の文字列
*/
function
substr(text, len, truncation) {
var
count = 0;
str =
''
;
for
(i=0; i
n = escape(text.charAt(i));
if
(n.length < 4) count++;
else
count+=2;
(count>len) {
return
str+truncation;}
str += text.charAt(i);
}
text;
0 件のコメント:
コメントを投稿