html頁(yè)面互相傳值的問(wèn)題解決方案

字號(hào):


    第一次使用隨筆,感覺(jué)還是蠻別扭的
    a.html
    代碼如下:
    <html>
    <head>
    <title> demo </title>
    <meta name="Author" content="xugang" />
    </head>
    <body>
    <FORM name="frm" METHOD="get" ACTION="b.html" onsubmit="return foo()">
    <INPUT TYPE="hidden" id="hid" value="123" name="hid">
    <INPUT TYPE="submit" value="提交">
    </FORM>
    </body>
    </html>
    b.html
    代碼如下:
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    </HEAD>
    <BODY>
    <SCRIPT LANGUAGE="JavaScript">
    document.write(location+"
    ");
    document.write(location.search+"
    ");
    document.write(decodeURIComponent(location.search.substr(location.search.indexOf("=")+1)));
    </SCRIPT>
    </BODY>
    </HTML>