第一種 也是最古老的一種方法之一
from 表單直接提交資料到php檔案裡
action為路徑
<form
method
="post"
action
="./index.php"
>
<
input
name
="username"
placeholder
="使用者名稱"
type
="text"
>
<
input
name
="password"
placeholder
="密碼"
type
="password"
>
<
input
value
="登入"
type
="submit"
>
form
>
data為要傳遞的引數
$.post(路徑,,function(a),"json");
jq提交方式
$.ajax(,datatype:"json",
success:
function
(a),
error:
function
(e)});
Oracle的游標使用方法 三種迴圈
例 游標 loop迴圈游標 set serveriutput on declare r emp emp rowtype cursor c emp is select from emp begin open c emp loop fetch c emp into r emp exit when c e...
Go map的概念及三種使用方法
基本語法key 可以是什麼型別valuetype 可以是什麼型別注意 宣告是不會分配記憶體的,初始化需要 make 分配記憶體後才能賦值和使用。map的宣告和注意事項 var a map string string 在使用map前,需要先make make的作用就是給map分配資料空間 a make...
C 計時器的三種使用方法
system.timers.timer t new system.timers.timer 5000 設定時間間隔為5秒 private void form1 load object sender,eventargs e private void btnstart click object send...