Javascript表单验证onsubmit

时间:2011-04-19 03:09:48

标签: javascript javascript-events

我正在尝试使用'onsubmit'事件将此表单提交到订单表单页面之前验证此表单,但它无效。不知道我做错了什么。另外,如何将带有价格和产品ID的产品提交到订购单页面?我需要使用表单控件来允许用户输入个人信息和账单信息(姓名,地址等)。我们将不胜感激。

这是我的代码我试图用'onsubmit'验证:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

    <title>Javascript - Shopping Cart</title>

    <script type="text/javascript" charset="utf-8">
        function checkCheckBoxes( ) {
            if (document.frmTest.product1.checked == false &&
                document.frmTest.product2.checked == false &&
                document.frmTest.product3.checked == false &&
                document.frmTest.product4.checked == false)
                    {
                    alert ('You must select a product to continue.');
                    return false;
                    }
            else
                    {
                    return true;
                    }
        }
    </script>

</head>

<body>

    <h1>Shopping Cart - Product Page</h1>

    <form name="product" method="post" action="" onsubmit="return checkCheckBoxes( );" >

        <div id="product1">     

            <p id="title1"><b>Desktop Computer</b></p>

            <img src="images/desktop.jpg" alt="desktop" width="100"/>

            <p>The latest in desktop computing.</p>

            <p><input type="checkbox" name="product1" id="001">Price $599.99</p>     

        </div>

        <div id="product2">

            <p id="title2"><b>Monitor</b></p>

            <img src="images/monitor.jpg" alt="monitor" width="100"/>

            <p>21 inch monitor</p> 

            <p><input type=checkbox name="product2" id="002">Price $159.99</p>
        </div>

        <div id="product3">

            <p id="title3"><b>Keyboard</b></p>

            <img src="images/keyboard.jpg" alt="keyboard" width="100"/>

            <p>USB Keyboard</p> 

            <p><input type=checkbox name="product3" id="003">Price $39.99</p>           
        </div> 

        <div id="product4">

            <p id="title4"><b>Mouse</b></p>

            <img src="images/mouse.jpg" alt="mouse" width="100" />

            <p>USB Keyboard</p> 

            <p><input type=checkbox name="product4" id="004">Price $25.99</p>
            </p>
        </div>

        <br />

        <input type="submit" value="Submit" name="submit" onClick="cart()";/><input , type="reset" value="Reset" name="reset">

    </form>


</body>
</html>

3 个答案:

答案 0 :(得分:0)

更改

<form name="product"

<form name="frmTest"

答案 1 :(得分:0)

如果你安装像Firebug这样的调试器,你可以调用

checkCheckBoxes( );

在控制台中手动(不提交表单),以便您可以看到该函数生成的错误消息,在本例中为

TypeError: document.frmTest is undefined

由于表单的名称是“product”,因此“document.frmTest ...”应该被称为“document.product ...”。

答案 2 :(得分:0)

尝试更改if语句以使用getElementById。我运行了你的代码,但是使用了if语句:

if ( (document.getElementById("001").checked == false) &&
    (document.getElementById("002").checked == false) &&
    (document.getElementById("003").checked == false) &&
    (document.getElementById("004").checked == false))

并且有效。