浏览器的技术不一样,没用过firefox不知道怎么回事

解决方案 »

  1.   

    在Firefox里提示下面的信息,我该怎么更改,才能同时在IE及Firefox里自动提交呢?错误: document.l1form has no properties
    源文件:http://localhost/test.php
    行:5
      

  2.   

    顺便问一下,为什么我的firefox不能显示各类弹出窗口
      

  3.   

    <form name="llform" method="post" action="index.php">
    <input type="hidden" name="name" value="qqqwww">
    </form>
    <script language='javascript'>
    document.forms["llform"].submit();
    </script>还是不行呀.提示下面的错误.我的是firefox 1.0 版.错误: document.forms.llform has no properties
    源文件:http://localhost/test.php
    行:5
      

  4.   

    <body onload="document.llform.submit();">
    <form name="llform" method="post" action="index.php">
    <input type=hidden name=name value=qqqwww>
    </form>
      

  5.   

    document.GetElementById("llform").submit();不知道是11(数字)还ll(字母)...
      

  6.   

    可以了,太感谢 net_lover(孟子E章) 了,也谢谢各位的支持.