跳转页面中MM_jumpMenu()的源代码是什么

解决方案 »

  1.   

    php的跳转时借助header来完成的
      

  2.   

    总结PHP中页面跳转有三种方法:1 header(”Location:index.php”);
      header()是php内置函数,用于实现页面跳转。  
    2 echo(”<script>window.location=index.php</script>”);
      利用JAVASCRIPT实现页面跳转。
    3 echo(”<meta http-equiv=refresh content=0;url=index.php>”);
      利用HTML方法实现页面跳转,该方法较为实用,可以设置刷新时间,推荐使用。
      

  3.   

    不要用那些自动生成的。
    自己写个就可以了。
    <select onchange="tourl(this)">
    ..........
    </select>
    <script>
    function tourl(obj){
        if(obj.value!="")window.location.href=obj.value;
    }
    </script>