1 回答

TA貢獻(xiàn)1784條經(jīng)驗(yàn) 獲得超8個(gè)贊
只需將其他數(shù)據(jù)項(xiàng)添加到 data{} 部分,并用逗號(hào)分隔。
假設(shè)您的 $element 數(shù)據(jù)位于輸入框中,那么
超文本標(biāo)記語言
<input id="element">
<br>
<select id="main_select">
<option selected="selected" value="50">50</option>
<option value="100">100</option>
<option value="150">150</option>
</select>
$(document).ready(function() {
$('#main_select').change(function() {
$.ajax({
url: "itemscript.php",
method: "POST",
data: {
option: $(this).val(),
element: document.getElementById("element").value
},
.success: function(data) {
$("#details").html(data);
}
});
}).change();
});
在上面,$_POST["element"] 將被傳遞到你的 php 腳本
添加回答
舉報(bào)