JQuery – 在 form serialize 後加額外參數

在 JQuery Serialize 之後,有時除了頁面上的資料外,還需要額外傳更多的資訊

如這個頁面,會從 fm1 收集資料,並得到 name = min

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <form id="fm1">
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
     <input type='text' name ='name' value='min' />
   <form>
</body>
</html>

使用 ‘&’ + $.param 額外加入參數 :

print

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *