我现学现卖了
刚才朋友告诉我的
<INPUT type="radio" name="q" value="1" checked onclick='submit()'>
只要加上这个就可以了

解决方案 »

  1.   

    .........
    <form action="./my.php" method="post" id="fm">
    <INPUT type="radio" name="q" value="1" checked onclick="if(checked) return fm.submit();>全部
    <INPUT type="radio" name="q" value="2" onclick="if(checked) return fm.submit();>当日
    </form>
    .........
      

  2.   

    <form action="./my.php" method="post">
    <INPUT type="radio" name="q" value="1" checked onclick="if(this.checked == true) this.form.submit()">全部
    <INPUT type="radio" name="q" value="2" onclick="if(this.checked == true) this.form.submit()">当日
    </form>