Jump to content
  • 0

Нет реакции на onBlur


3d_max_9
 Share

Question

Решил сделать небольшой скрипт который бы выводил оставшееся число символов которые можно ввести в форму!

Но нет никакой реакции на onBlur и при переходе на другое поле выводимая цифра не удаляется.

Вот код

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<script Language="JavaScript">
var author,
e_mail,
text_help;

var i;

function wiev_author(){
author = document.forma.author.value;
if (author.length > 19) {
alert("Вы ввели максимальное количество символов");
document.getElementById('vivod_ost_author').innerHTML = "";
}
else
{
i = 19 - author.length;
document.getElementById('vivod_ost_author').innerHTML = i;
}
}
function clear(){
document.getElementById('vivod_ost_author').innerHTML = "";
}
</script>
<title>вопрос!</title>
</head>

<body>
<div>
<form action="" method="post" name="forma" onSubmit="return true">
<div>
<p>Введите Ваше имя:<br><input type="text" size="40" name="author" onKeyPress ="wiev_author()" onBlur="clear()" value=""> <strong id="vivod_ost_author"></strong></p>
<p>Введите Ваш e-mail или номер телефона:<br><input type="text" size="40" name="e_mail"></p>
<p>Введите текст вопроса:<br><textarea rows="5" cols="70" name="text_help"></textarea></p>
<input type="submit" value="Задать вопрос!">
</div>
</form>
</div>
</body>
</html>

Подскажите где ошибка или как решить эту проблему

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0
Не называйте функции зарезервированными словами! Назовите хоть Clear1() и все сразу заработает! :)

Волшебство! спасибо.

Токо вот странно почему тогда если в функцию Clear() подставить alert("Привет"); то сообщение выводится?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy