[Javascript] 如何在客户端验证表单被改变


Form中的每个对象都保留了初始值,所以可以在提交表单时,遍历Form中对象,
检查对象当前的值与初始值是否一致,就判断出了表单是否被修改了。

示例代码

 1 None.gif function  IsFormChanged()
 2 ExpandedBlockStart.gif {
 3InBlock.gif    var isChanged = false;
 4InBlock.gif    var form = document.forms[0];
 5InBlock.gif    for (var i = 0; i < form.elements.length; i++)
 6ExpandedSubBlockStart.gif    {
 7InBlock.gif        var element = form.elements[i];
 8InBlock.gif        var type    = element.type;
 9InBlock.gif        if (type == "text" || type == "hidden" || type == "textarea" || type == "button")
10ExpandedSubBlockStart.gif        {
11InBlock.gif            if (element.value != element.defaultValue)
12ExpandedSubBlockStart.gif            {
13InBlock.gif                isChanged = true;
14InBlock.gif                break;
15ExpandedSubBlockEnd.gif            }

16ExpandedSubBlockEnd.gif        }

17InBlock.gif        else if (type == "radio" || type == "checkbox")
18ExpandedSubBlockStart.gif        {
19InBlock.gif            if (element.checked != element.defaultChecked)
20ExpandedSubBlockStart.gif            {
21InBlock.gif                isChanged = true;
22InBlock.gif                break;
23ExpandedSubBlockEnd.gif            }

24ExpandedSubBlockEnd.gif        }

25InBlock.gif        else if (type == "select-one")
26ExpandedSubBlockStart.gif        {
27InBlock.gif            for (var j = 0; j < element.options.length; j++)
28ExpandedSubBlockStart.gif            {
29InBlock.gif                if (element.options[j].selected != element.options[j].defaultSelected)
30ExpandedSubBlockStart.gif                {
31InBlock.gif                    isChanged = true;
32InBlock.gif                    break;
33ExpandedSubBlockEnd.gif                }

34ExpandedSubBlockEnd.gif            }

35ExpandedSubBlockEnd.gif        }

36InBlock.gif        else
37ExpandedSubBlockStart.gif        {
38InBlock.gif            //
39ExpandedSubBlockEnd.gif        }

40ExpandedSubBlockEnd.gif    }

41InBlock.gif
42InBlock.gif    return isChanged;
43ExpandedBlockEnd.gif}


本文转自高海东博客园博客,原文链接:http://www.cnblogs.com/ghd258/archive/2007/01/12/618257.html,如需转载请自行联系原作者
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值