<input type=radio name=show value=CSDN onclick=window.location="http://www.csdn.net/">
<input type=radio name=show value=Proxy365 onclick=window.location="http://www.proxy365.com/">
<input type=radio name=show value=猎手与蚂蚁 onclick=window.location="http://go8.163.com/dzc/">

解决方案 »

  1.   

    http://www.csdn.net/expert/Topicview1.asp?id=741083
    后面已经帮你回了<input type=radio name=show value=about:a>aaaa
    <input type=radio name=show value=about:b>bbb
    <input type=radio name=show value=about:c>cc
    <input type=radio name=show value=about:d>d
    <input type=button value=show onclick=showWin()>
    <script>
    function showWin(){
    var objs=document.getElementsByName("show")
    for(i=0;i<objs.length;i++)if(objs[i].checked)window.open(objs[i].value,"name","resizable")
    }
    </script>
      

  2.   

    我是说假如我有3个单选按钮,是一组的,然后我有一个图片按钮(next),如何实现我选了单选按钮以后再按next,就能根据选项的不同到达不同的页面
      

  3.   

    <input type=button value=show onclick=showWin()>
    改为
    <img src=next.jpg onclick=showWin()>如下:
    <input type=radio name=show value=about:a>aaaa
    <input type=radio name=show value=about:b>bbb
    <input type=radio name=show value=about:c>cc
    <input type=radio name=show value=about:d>d
    <img src=next.jpg onclick=showWin()>
    <script>
    function showWin(){
    var objs=document.getElementsByName("show")
    for(i=0;i<objs.length;i++)if(objs[i].checked)window.open(objs[i].value,"name","resizable")
    }
    </script>
      

  4.   

    value=about:a
    ==>
    value=http://..
      

  5.   

    另外关于
    value=about:a
    ==>
    value=http://
    如果我不想弹出新窗口,直接在本窗口加载该怎么办啊?
      

  6.   

    window.open(objs[i].value,"name","resizable")
    =>
    location.replace(objs[i].value)
      

  7.   

    qiushuiwuhen(秋水无恨) 谢谢你:)太崇拜你了
    我刚开始做网页,对这些还不太熟。我可不可以拜你为师啊
    我的qq 59715296