关于表单提交
<FORM   action=http://hk.geocities.yahoo.com/gb/sign   method=post>  <INPUT   type=hidden   value=1   name=.state>  <INPUT   type=hidden   value=munima3344   name=member>    请问: 
 这一段包含什么内容?我的意思是是不是提交到 
 http://hk.geocities.yahoo.com/gb/sign?member=munima3344的页面?   谢谢啦
------解决方案--------------------只能说和http://hk.geocities.yahoo.com/gb/sign?member=munima3344这样提交是等效的,但是member=munima3344这个你在地址栏中是看不到的。form中的method=post意思就是指定为post提交,这样表单中的内容(包括input、select、textarea)就都会提交给form中指定的服务器。