0

下面是我的代码:

<%@taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>

<script type="text/javascript">
var flag = false;
function test(selObject)
{
    alert("hi");

    var form = document.forms[0];
    alert("form"+form);

    var txtS =  form["city"];
    alert("txt"+txtS);

    var len = txtS.length;
    alert("len"+len);

    for(var i=0; i<len; i++) 
    {
        if (selObject == txtS[i] )
        {
            if(txtS[i].value==txtS[i].options[3].value)
            {
                alert("YOU ARE SELECTING MYSORE CITY");
                flag = true;
            }
            
            if(!txtS[i].options[3].selected && flag)
            {
                var result = confirm("Are you sure you wnat to travel to this city");
                if(result)
                {
                    flag = false;
                }
                else
                {
                    txtS[i].options[txtS[i].options.selectedIndex].selected=false;
                    txtS[i].options[4].selected=true;
                }
            }
        }
    }//end of for loop
}
</script>

<html:form action="/login">
    username:<input type="text" name="username" /></br>
    password:<input type="password" name="password"/></br>
    
    <%
    for(int i = 0; i < 10; i++){
    %>
        <html:select property="city" onchange="javascript:test(this);">
            <html:option value="B">BANGALORE</html:option>
            <html:option value="C">CHENNAI</html:option>
            <html:option value="M">MANGALORE</html:option>
            <html:option value="MR">MYSORE</html:option>
        </html:select></br>
    <%
    }
    %>
    <input type="submit" value="submit"/>
</html:form>

When select-box or combo-box is looped for ten times then I am getting form["city"]length as 10 properly and behaviour of alertswithin combox-box is appropriate, but if I have a single-select-box, then instead of giving form["city"]length as 1it gives它是我的下拉框中元素4的数量。option

所以我的逻辑在这里行不通。

如何使它适用于单个和多个组合/选择框。

任何帮助,将不胜感激。

4

1 回答 1

0

请使用 jQuery 之类的 javascript 库来实现跨浏览器兼容性。

您可以使用以下代码来确定仅存在单个 select 元素或存在多个具有相同名称的 select 元素:

if (selObject == txtS) {
    alert("Single select");
    // ... your logic for a single combo-box follows after this
} else {
    // your logic for multiple combo-box follows, like the "for" loop and if-else
}

当只有一个选择框时,该行将var txtS = form["city"];返回该选择框中的选项元素数组,当有多个同名选择框时,它将返回选择框数组。

希望这可以帮助。

与您的问题无关,但此逻辑if(!txtS[i].options[3].selected && flag)将始终返回false

于 2012-07-30T10:04:51.967 回答