Jump to content
  • 0

Регулярные выражения, тег select


Flex
 Share

Question

Собственно, есть такой код.

<script type=\"text/javascript\">
function SendForm() {
var reg=/\.flv$/;
var select = document.adminForm.type.selectedIndex;
if (select=='Video'&&!reg.test(document.adminForm.file.value)){
alert('Error! Enter valid file!');
return false
}
return true;
}
</script>

<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\">
<form action=\"main.php\" method=\"post\" name=\"adminForm\" onsubmit=\"return SendForm();\" ENCTYPE=\"multipart/form-data\">

<tr>
<td align=\"right\" height=\"30\">
Type:   
</td>
<td align=\"left\">
<select name=\"type\" class=\"edit\" style=\"width:365px;\" onChange=\"java script:selecting()\">
<option value=\"music\">Music</option>
<option value=\"video\">Video</option>
</select>
</td>
</tr>

<tr>
<td align=\"right\" height=\"30\" width=\"300\">
Select file:   
</td>
<td align=\"left\">
<input name=\"file\" id=\"pole1\" type=\"File\" class=\"edit\" style=\"width:365px;\" />
</td>
</tr>
<tr>
<td align=\"center\" colspan=\"2\" height=\"40\">
<input type=\"submit\" class=\"edit\" value=\"Add\">
</td>
</tr>
</form></table>

Задача в том, чтобы можно было выбирать файлы только с расширением .flv . Когда запускаю данный сценарий, то проверка не происходит, а в консоле ошибок, в Mozilla, выскакивает ошибка "selecting is not defined". С чем это может быть связано?

P.S. Все кавычки со слешами, так как этот код встраивается в PHP-код.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
в селекте у вас на событие onChange стоит вызов функции selecting(), которая не объявлена.

Да, действительно данная ошибка была с этим связана. Этот кусок кода был скопирован с другого сценария, вот и забыл убрать.. Спасибо за помощь! Буду внимательнее.

Всё же, убрал вызов этой функции, но не работает сценарий так как надо. У меня вопрос. Свойство selectedIndex указывает на значение, указанное в атрибуте value? То есть, video, а не Video?

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