Form表单的哪个属性是表单数据的传送方式?

来源:百度知道 编辑:UC知道 时间:2024/06/14 14:12:56

<form name="form" method="post" action="index.asp">
method这个属性有2种方式post,get
get是提交时把参数写在url后面,在另外一个页面接收,比如asp或者.net的就可以用querystring("提交项目的name名")
post提交在另外的另外一个页面用request.form("提交项目的name名")接收