我正在一個頁面上顯示不同的輸入字段,具體取決於用戶所做的選擇。使用jQuery動態獲取輸入字段的值,並用PHP處理它們
例1:
<input type="text" name="color" value="" id="5">
<input type="text" name="location" value="" id="6">
<input type="text" name="age" value="" id="7">
例2:
<input type="text" name="color" value="" id="5">
<input type="text" name="destination" value="" id="8">
<input type="text" name="hours" value="" id="9">
<input type="text" name="date" value="" id="10">
問題1: 如何我可以得到jQuery的所有輸入字段時,輸入字段本身是動態的?
問題2: 在服務器端,我想用它們的值和ID處理輸入字段。我怎樣才能使這種動態?
我知道,當一切都解決,例如:
var color = $('#color').val();
var destination = $("#destination").val();
var dataString = 'color=' + color + "&destination=" + destination;
$.ajax({
type: "GET",
url: "do_something.php",
data: dataString,
async: false,
success: function(data){
console.log('success');
}
});
'.serialize()'這正是我一直在尋找。感謝您告訴我,這存在! – doonot
我有隨機數字的隨機數的輸入。我該如何改進'$(「#input13」)','$(「#input24」)'? –