本文介绍了具有相同名称的多个下拉列表以进行验证。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述





请帮帮我们,



我页面上有一个按钮,每次我们点击都会将下拉列表项添加到页面上。



因此,如果我单击按钮3次,那么我将在页面上有3个下拉列表项。 />


现在问题是我要验证它们,



我正在使用它..

Hi,

Please need help guys,

I have a button on the page , each time we click that adds dropdownlist items on to the page.

So if i click the button 3 times so i will have 3 dropdownlist items on the page.

Now the problem is i wants to validate them,

I am using this..

var extrapetid = document.getElementsByTagName('select');
       for (i = 0; i < extrapetid.length; i++) {

           var value = $("extrapetid[i] option:selected").val();
           if (extrapetid[i].val() == "") {
               valid = false;
            }
         }





我想检查选择的值是否为 valid = false。

我用它来迭代页面上的每个选择项并获得它的选定值但是



但是没有好运,我总是得到错误或没有得到价值。



请帮帮我



I wants to check if the seleted value is "" make it valid=false.
I am using it to iterate each select item on the page and get the selected value of it but

But no luck in that i always getting error or not getting the value.

Please help me

推荐答案





我想检查选择的值是否为 valid = false。

我用它来迭代页面上的每个选择项并获得它的选定值但是



但是没有幸运的是,我总是得到错误或没有得到价值。



请帮助我



I wants to check if the seleted value is "" make it valid=false.
I am using it to iterate each select item on the page and get the selected value of it but

But no luck in that i always getting error or not getting the value.

Please help me



这篇关于具有相同名称的多个下拉列表以进行验证。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 00:09