zoukankan
html css js c++ java
js代码小记(判断textbox的长度,并且固定最多收入字符)
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<
html
xmlns
="http://www.w3.org/1999/xhtml"
>
<
head
>
<
meta
http-equiv
="Content-Type"
content
="text/html; charset=gb2312"
/>
<
title
>
Untitled Document
</
title
>
<
SCRIPT
language
=javascript1.3
>
<!--
var
testleng
=
300
;
//
允许多少字符串填入
function
GC_UpdateCharCount()
{
var
desc_el
=
document.getElementById('desc');
var
remainingchars_el
=
document.getElementById('remainingchars');
var
num_remaining
=
testleng
-
desc_el.value.length;
if
(num_remaining
>=
0
)
{
remainingchars_el.innerHTML
=
num_remaining;
}
else
{
remainingchars_el.innerHTML
=
"
<font color=red>
"
+
(
-
num_remaining
+
'')
+
"
characters over</font>
"
;
}
}
function
isOver(sText)
{
var
intlen
=
sText.value.length;
if
(intlen
>
testleng)
{
alert(
"
描述特征的内容的字数必修小于或者等于
"
+
testleng);
sText.focus();
sText.select();
}
}
//
--></SCRIPT>
</
head
>
<
body
>
<<
B
>
Group description
</
B
><
BR
><
TEXTAREA id
=
desc onkeydown
=
GC_UpdateCharCount() onkeyup
=
GC_UpdateCharCount() onblur
=
"
isOver(this);
"
style
=
"
WIDTH: 99%
"
name
=
desc rows
=
4
cols
=
50
></
TEXTAREA
>
<
BR
>
Letters remaining:
<
SPAN id
=
remainingchars
>
<
SCRIPT language
=
javascript1.
2
><!--
GC_UpdateCharCount();
//
--></SCRIPT></SPAN><NOSCRIPT>300 characters allowed </NOSCRIPT>
</
body
>
</
html
>
效果参考:
www.lostfound.cn/CoutChar.html
查看全文
相关阅读:
绪论
Linux回到上次目录
松下伺服电机控制器参数设置
更新github上的文件
pytorch
从本地上传文件到github
Linux常用命令
使用colab训练神经网络
深度学习模型训练过程
anaconda安装ubuntu20.4中
原文地址:https://www.cnblogs.com/xucanzhao/p/420594.html
最新文章
浮点数在计算机中的表示
[转载]表驱动法代码实践
Git学习笔记(一)
极简版《计算机原理》
SICP 题解集合
UVALive8518 Sum of xor sum
计蒜客
BZOJ4034 树上操作
HDU6438 Buy and Resell
HDU6440 Dream
热门文章
HDU6446 Tree and Permutation
莫比乌斯反演学习笔记
CF995F Cowmpany Cowmpensation
codeblocks默认编译器不支持C99问题解决
F1C100S添加USB驱动
逻辑表达式与门级电路
F1C100S添加SPI LCD液晶驱动
C++ STL----招聘笔试常用数据结构和算法
第一章 构建整体系统框图
ucOSII操作系统就绪表分析
Copyright © 2011-2022 走看看