load("checkname.asp?username="+escape(username)); 中的load是啥?
另外,建议在.net环境下测试为准。

解决方案 »

  1.   

    点 按钮 页面没反应  IE6 就直接去checkname.asp页面 检查用户名了
      

  2.   

    换个跳转方式呢?比如用:window.location.href="";
      

  3.   

    lode 不是跳转方法是加载
    用下面的代码跳转! window.location.href="checkname.asp?username="+escape(username); 
      

  4.   


    <html>
    <head>
        <title>Popup Example</title>
        <style>
    .userData {
    behavior:url(#default#userdata);
    }
    </style>    <script>
    function fnLoad(){
        oPersistInput.load("oDataStore");
        oPersistInput.value=oPersistInput.getAttribute("sPersistAttr");
    }
    function fnSave(){
        oPersistInput.setAttribute("sPersistAttr",oPersistInput.value);
        oPersistInput.save("oDataStore");
    }
        </script></head>
    <body>
        <input type="text" class="userData" id="oPersistInput">
        <input type="button" value="Load Attribute" onclick="fnLoad()">
        <input type="button" value="Save Attribute" onclick="fnSave()">
    </body>
    </html>
      

  5.   

    用load方法是为了加载用户的一些信息吗?
      

  6.   


    在什么样的环境下?<INPUT name=UserName size=15 id='UserName' maxLength=14 onchange="javascript:checkname();"> 
    这个是用点的?点了没反应?
    type默认是text。。你也没设置onclick,怎么点...
      

  7.   

    load 应该是JS中的一个方法,只是LZ没贴出来吧