post的值是不可能从html到hmtl的,中间必须经过Server.原因:post的值是附加在http请求的头部的.只有在服务器端才能获得其值.方案一:使用asp在服务器端获得得post的值如Response.write request("post的表单的name属性")方案二:改用Get方式,通过URL传值如2.html?aa=1然后通过js获得得变量aa的值 ``
用ajax接收