<a href="Javascript:this.href='xx.asp?ID='+document.all.Member.value" >open</a>

解决方案 »

  1.   

    <input name="Member" type="text" value="abc" onblur="pjsfGetValue(this.value)"><a href="xx.asp?ID=xxx" id=mylink>
    <script>
    function pjsfGetValue(str){
      document.all.mylink.href = ="xx.asp?ID=" + str;
    }
    </script>
      

  2.   

    <a href="#" onclick="location.href='xx.asp?ID='+document.all.Member.value" >link</a>
      

  3.   

    写错一个地方
    这个对,我测试过
    <input name="Member" type="text" value="abc" onblur="pjsfGetValue(this.value)"><a href="xx.asp?ID=xxx" id=mylink>aaa</a>
    <script>
    function pjsfGetValue(str){  document.all.mylink.href ="xx.asp?ID=" + str;
    }
    </script>
      

  4.   

    恩 楼上的没错 不过我感觉搂主没有必要 用form写 在链接页面用request不行吗?