1 通過隱藏表單提交
//通過隱藏表單提交if ($_post['action'] == 'register')
?>
doctype html
>
<
head
>
head
>
<
body
>
<
div
id='register'
>
<
form
method
="post"
name
="register"
action
="register.php"
>
<
input
type
="hidden"
name
="action"
value
="register"
/>
<
ul>
<
h2>請認真填寫一下內容
h2>
<
li>用 戶 名:<
input
type
='text'
name
='username'
class
='text'
/>(*必填,至少兩位)
li>
<
li>密 碼:<
input
type
='password'
name
='password'
class
='text'
/>(*必填,至少兩位)
li>
<
li><
input
type
='submit'
value
='提交'
/>
li>
ul>
form
>
div>
body
>
2 通過?後的字尾提交資料
<?php
if ($_get['action'] == 'register')
?>
doctype html
>
<
head
>
head
>
<
body
>
<
div
id='register'
>
<
form
method
="post"
name
="register"
action
="register.php?action=register"
>
<
ul>
<
h2>請認真填寫一下內容
h2>
<
li>用 戶 名:<
input
type
='text'
name
='username'
class
='text'
/>(*必填,至少兩位)
li>
<
li>密 碼:<
input
type
='password'
name
='password'
class
='text'
/>(*必填,至少兩位)
li>
<
li><
input
type
='submit'
value
='提交'
/>
li>
ul>
form
>
div>
body
>
jquery ajax提交表單資料的兩種方式
貌似ajax越來越火了,作為乙個web程式開發者要是不會這個感覺就要落伍,甚至有可能在求職的時候屢被淘汰。我也是乙個web程式開發者,當然我也要 隨波逐流 一把,不然飯碗不保啊!後台 if context.request.params id tostring else 二 form提交資料 前台 必...
easyui form 表單提交兩種方式
easyui form表單提交資料的兩種方式 第一種 admin yhgl adduserform form submit success function data messager.show 這種方式需要將form中的數值單個賦值,用到jquery 資料選擇器進行單個選擇,當form中個數比較多...
Form表單提交的兩種方式
1.當輸入使用者名稱和密碼為空的時候,需要判斷。這時候就用到了校驗使用者名稱和密碼,這個需要在jsp的前端頁面寫 有兩種方法,一種是用submit提交。一種是用button提交。方法一 用submit提交 表單提交,在form標籤中增加onsubmit事件來判斷表單提交是否成功 方法二 用butto...