怎樣取得提交的form表單中的核取方塊資料

2021-04-08 20:09:59 字數 2967 閱讀 1042

無標題文件

title

>

head

>

<

body

>

<

form 

action

="test.asp"

method

="get"

name

="form1"

>

<

input 

name

="fruit"

type

="checkbox"

value

="香蕉"

>

香蕉<

br/>

<

input 

name

="fruit"

type

="checkbox"

value

="蘋果"

>

蘋果 <

br/>

<

input 

name

="fruit"

type

="checkbox"

value

="菠蘿"

>

菠蘿 <

br/>

<

input 

name

="fruit"

type

="checkbox"

value

="柑橘"

>

柑橘 <

input 

type

="submit"

name

="submit"

value

="訂購"

>

form

>

<%

...if

request.querystring(

"fruit")

=""

then

response.write 

"您沒有訂購水果

"else

response.write 

"您訂購了"&

""

fori=1

torequest.querystring(

"fruit

").count

response.write request.querystring(

"fruit

")(i) &"

"next

endif

%>

body

>

html

>

無標題文件

title

>

head

>

<

body

>

<

form 

action

="test.asp"

method

="post"

name

="form1"

>

<

input 

name

="fruit"

type

="checkbox"

value

="香蕉"

>

香蕉<

br/>

<

input 

name

="fruit"

type

="checkbox"

value

="蘋果"

>

蘋果 <

br/>

<

input 

name

="fruit"

type

="checkbox"

value

="菠蘿"

>

菠蘿 <

br/>

<

input 

name

="fruit"

type

="checkbox"

value

="柑橘"

>

柑橘 <

input 

type

="submit"

name

="submit"

value

="訂購"

>

form

>

<%

...if

request.form(

"submit")

="訂購"

then

ifrequest.form(

"fruit")

=""

then

response.write 

"您沒有訂購水果

"else

response.write 

"您訂購了 "&

request.form(

"fruit")

endif

endif

%>

body

>

html

>

form表單的ajax提交

ajax method post datatype json data headers traditional true 可以傳遞陣列 success function status ajax data jsstayform serialize 學到了 目 async true async.預設是 ...

Meteor的表單提交 Form

在web中時時刻刻都不能離開form,表單提交,來看看在meteor裡面如何提交表單吧!首先是 html 這裡我們定義了一個表單,class為new lanuage,有一個text的 input還有一個提交的按鈕。下面的模板meteor collection是用來顯示的。if meteor.iscl...

form表單的提交方式

最基本的提交方式,或者提交,這兩種方式效果是一樣的。如果需要再提交表單之前進行驗證,可以在form標籤中設定onsubmit屬性,如下 函式mysubmit 如下 使用js的submit 注意 此函式不是jquery的,而是html dom的方法 函式進行表單提交,此類表單提交不會觸發onsubmi...

如何取得提交表單的內容?

如果提交的頁面是類似下面 在post方法中使用web.input即可取得其值,舉例如下 i web.input print i xml 或者print i.xml 如果提交的表單含有file型別的資料,可以得到控制元件的名字和檔案的內容 但是通過本方法不能得到檔案原始名稱 如果提交的file型別的表...

jquery的ajax提交form表單

ajax提交整個表單,可以分為2種,無返回值 即表單提交到後臺,後臺處理完就處理完了 有返回值 後臺給出成功和失敗的返回,即是ajax中success方法 1 無返回值 formid submit 直接提交到後臺,目前還沒實踐 2 有返回值 serialize 方法通過序列化表單值,建立url編碼文...