您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關jQuery中serialize()怎么用的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
jQuery成功的控制表單的序列化。只有form元素檢查它們所包含的輸入框,在所有其他情況下,輸入元素要序列化應該是集合的一部分傳遞給.serialize()方法。選擇集合中表單和它子元素在序列化的字符串會導致重復。
注意: 只有 "successful controls"可以被序列化成字符串。其中,提交按鈕的值不會被序列化。另外,如果想要一個表單元素的值被序列化成字符串,這個元素必須含有 name 屬性。此外,復選框(checkbox)和單選按鈕(radio)(input 類型為 "radio" 或 "checkbox")的值只有在被選中時才會被序列化。另外,文件選擇元素的數據也不會被序列化。
例子:
把一個表單序列化成一個查詢字符串,使之能夠在一個Ajax請求中發送。
<!DOCTYPE html>
<html>
<head>
<style>
body, select { font-size:12px; }
form { margin:5px; }
p { color:red; margin:5px; font-size:14px; }
b { color:blue; }
</style>
<script src="https://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<form>
<select name="single">
<option>Single</option>
<option>Single2</option>
</select>
<br />
<select name="multiple" multiple="multiple">
<option selected="selected">Multiple</option>
<option>Multiple2</option>
<option selected="selected">Multiple3</option>
</select>
<br/>
<input type="checkbox" name="check" value="check1" id="ch2"/>
<label for="ch2">check1</label>
<input type="checkbox" name="check" value="check2" checked="checked" id="ch3"/>
<label for="ch3">check2</label>
<br />
<input type="radio" name="radio" value="radio1" checked="checked" id="r1"/>
<label for="r1">radio1</label>
<input type="radio" name="radio" value="radio2" id="r2"/>
<label for="r2">radio2</label>
</form>
<p><tt id="results"></tt></p>
<script>
function showValues() {
var str = $("form").serialize();
$("#results").text(str);
}
$(":checkbox, :radio").click(showValues);
$("select").change(showValues);
showValues();
</script>
</body>
</html>
感謝各位的閱讀!關于“jQuery中serialize()怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。