Jump to content
  • 0

Запрет на ввод букв.


Mestniy96
 Share

Question

Есть сайт на платформе ucoz. Хочу что-бы в строке поиска не нельзя было вводить буквы, а только цифры и символы. Хотя из символов мне нужно только "тирэ". Вот ссылка на сайт Вот ссылка на сайт

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Из самого простого - дайте инпуту атрибут pattern = "^[-0-9]+$". Тогда если в инпуте присутствуют символы отличные от тире и цифр при попытке отправки формы пользователю выведется сообщение о неверном формате заполнения. Правда поддержка браузерами не очень - safari не поддерживает, а от мелкомягких только IE10+.

Edited by ows.nightwolf
Link to comment
Share on other sites

  • 0

Я лох в HTML. 

Вобщем вот код формы поиска:

<div class="block">
 <h1 class="blocktitle"><!-- <bt> -->ВВЕДИТЕ СВОЙ ID<!-- </bt> --></h1>
 <div class="blockcontent"><!-- <bc> -->$SEARCH_FORM$
 <!-- </bc> --></div>
 </div>
 <div class="block-bottom"></div>
Куда здесь вводить input?

И какой ему задавать тип?

Link to comment
Share on other sites

  • 0

Я так понял что нужно заменсто $SEARCH_FORM$ написать форму поиска и вставить

<input type="search" pattern="[-0-9]+$">

Да. Или вместо того чтоб влаживать форму внутрь блока blockcontent можете саму форму сделать этим самым блоком blockcontent (вместо <div class="blockcontent"> поставить <form class="blockcontent"... и т.д.) чтоб код был почище.

Link to comment
Share on other sites

  • 0
<form class="poick_os" onsubmit="document.getElementById('sfSbm').disabled=true" method="get" action="/search/" >

 <input pattern="[-0-9]+$" type="text" value="Поиск..." onclick="if (this.value=='Поиск...'){this.value='';}"/>

 <input class="poick_knopka" type="submit" value="Найти" />

 <input type="hidden" name="t" value="0" />

 </form>

 Написал форму все работает. Спасибо огромное...
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