本帖最后由 xjqgo 于 2014-10-16 21:27:57 编辑

解决方案 »

  1.   

    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
     
     <a href="?中国">连接地址会自动URL编码</a><form action="http://www.soku.com/v" method="get" id="f" target="_blank">
    <input type="text" name="keyword"  value="中国"/>
    <button type="submit">go</button>
    </form> 
     
    <script>
     
     
    document.getElementById('f').onsubmit=function(){
        this.children[0].value=encodeURI(this.children[0].value);
        this.children[0].value=decodeURI(this.children[0].value);
          }
    </script>不行,和什么也不干直接提交无区别哦