<form onsubmit="return Juge(this);">  this表示当前form
<input type=submit onclick="return Juge(this);"> this表示当前input这样的话,代码中的对象就不一样了!

解决方案 »

  1.   

    可是  <input type=submit onclick="return Juge();">  也不对啊?????
      

  2.   

    <input type=submit onclick="return Juge();">  参数没有了……
    应该是<input type=submit onclick="return Juge(form1);">
    然后,代码中第一行
    eval("form="+form1)
      

  3.   

    <input type=submit onclick="return check();"> 
    <script>
    function check()
    {}
    </script>
    肯定没错
      

  4.   

    楼上的,你看他前边调用的方法,明显在function里要接受一个object参数的!
      

  5.   

    sorry,我看错了,楼主把你的源码贴出来看看再说吗
    <form onsubmit="return Juge(this);">
    <input type=submit onclick="return Juge(document.getElementsByTagName("form");">