Jump to content
  • 0

Помогите


UREL
 Share

Question

Люди столкнулся с такой проблемой:

есть форма, и скрипт

<script type="text/javascript">

window.onload = function()

{

var but = document.getElementById("button");

but.onclick = pro;

}

function pro()

{

var title = document.getElementById("title");

var text = document.getElementById("text");

if (title.value == "" || text.value == "")

{alert("Заполнены не все поля")}

}

</script>

<form id="form1" name="form1" method="post" action="">

<p>

<input type="text" name="title" id="title" />

</p>

<p>

<textarea name="text" id="text" cols="45" rows="5"></textarea>

</p>

<p>

<input type="submit" name="button" id="button" value="Отправить" />

</p>

</form>

Как сделать так чтоб данные не удалялись при неполном заполнении формы. Например: если ввели ток в область текста сообщение, а в текстовое поле забыли, то выйдет предупреждение при нажатии по алерт данные в текстовой области не очищались

помогите пожалуйста

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Примерно так:

<script type="text/javascript">
function testform()
{
if (document.getElementById('someid').value=='')
{
alert('Не заполнено поле');
return false;
}
return true;
}
</script>
<form action="/" method="post" onsubmit="return testform();">
<input type="text" name="somename" id="someid">
</form>

Link to comment
Share on other sites

  • 0
Нужно использовать у формы событие onsubmit. В нём нужно проверять значение и возвращать false, если что-то не заполнено. Близкий пример есть здесь.

Заработало, спасибо!!!

Вот что мне нужно было

if (title.value == '' || text.value == '')

{

alert('Заполнены не все поля')

return false;

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