Tự động đếm số kí tự nhập vào bằng javacript

thu thuat javacript, tự học javacript, đếm kí tự, javacript code, javacript tips

Đây là một ứng dụng đơn giản bằng javacript giúp bạn kiểm soát kí tự nhập vào, nếu bạn làm SEO thì nó sẽ là công cụ hữu ích giúp bạn trong việc đặt title.

<!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=iso-8859-1" />

<title>Character Counter</title>

<SCRIPT LANGUAGE="JavaScript">

function CountLeft(field, count, max) {

if (field.value.length > max)

field.value = field.value.substring(0, max);

else

count.value = max - field.value.length;

}

</script>

<style type="text/css">

.textfield2{

border:none;

color:red;

background-color:#fff;

margin-left:10px;

font-size:18px;

}

.textfield{

padding:10px;

border:1px solid #000000;

}

</style>

</head>



<body>

<form>

<input name="fname" type="text" id="fname" onKeyDown="CountLeft(this.form.fname, this.form.left,60);" onKeyUp="CountLeft(this.form.fname,this.form.left,60);" size="70"><input readonly type="text" name="left" size=3 maxlength=3 value="60" disabled="disabled">

</form>

</body>

</html>

Hy vọng đoạn code đơn giản này sẽ giúp ích cho các bạn.

 

 HỖ TRỢ TRỰC TUYẾN