html頁面可以互相傳值,沒聽過吧,下面有個不錯的範例,大家可以參考下
第一次使用隨筆,感覺還是蠻彆扭的
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>
更多html頁面互相傳值的問題解決方案相關文章請關注PHP中文網!