Javascript代码无法在Firefox中运行

时间:2013-08-08 06:27:44

标签: javascript html firefox

我有一个下拉列表框。如果用户未选择任何内容,则不应转到下一页。为此我尝试了一些东西。该代码在IE和Chrome中运行良好。但它正在Firefox的下一页。为什么这样?

<td width="100" align="right">
    <div style="text-align:center;">
       <input type="button" value="Next" align="top" style="width: 70px;" ONCLICK="gt();">
    </div>
</td> 

<script type="text/javascript">
    function gt_nextPage()
    {
        var e=document.getElementById("ParentType");
        var val=e.options[e.selectedIndex].value;
        window.location.replace("gt_Iba1?value="+val);
    }

    function gt()
    {
        var e=document.getElementById("ParentType");
        var val=e.options[e.selectedIndex].value;
        if(val != null)
        {
            gt_nextPage();  
        }
        if(val === "")
        {
            alert("Please select any value");
            window.location.replace("gt_Iba?value="+val);
        }
    } 
</script> 

我在jsp页面中添加了这个。

1 个答案:

答案 0 :(得分:2)

试试这个

function gt()
{
    var e=document.getElementById("ParentType");
    var val=e.options[e.selectedIndex].value;
    if(val != null && val !== "")
    {
        gt_nextPage();  
    }
    else
    {
        alert("Please select any value");
        window.location.replace("gt_Iba?value="+val);
    }
}