我有一张表格,要求客户提供一些细节。我希望根据客户的输入填充最终下拉列表。此下拉列表的数据使用PHP从MySql数据库中获取。这是我准备的代码,但它似乎不起作用。
表格代码:
<tr>
<td><label>Trade:</label></td>
<span class="text_11">
<td><input type="radio" id="Buy" name="tradetype" class="listen" required value="Buy"/><radio style="font-size: 16px;"> Buy</radio>
<input type="radio" id="Sell" name="tradetype" class="listen" value="Sell"/><radio style="font-size: 16px;"> Sell </radio></span></td>
</tr>
<tr>
<td><label>Item:</label></td>
<span class="text_11">
<td><input type="radio" id="Cloth" name="item" class="listen" required value="Cloth"/><radio style="font-size: 16px;"> Cloth</radio>
<input type="radio" id="Fruit" name="item" class="listen" value="Fruit"/><radio style="font-size: 16px;"> Fruit</radio></span></td>
</tr>
<tr>
<td class="select"><label>Date:</label></td>
<td><select id="exdate" name="date1">
<option value="2">Select</option>
<?php include_once "selectdate.php"?></td>
</select>
</tr>
<tr>
<td class="select"><label>Amount:</label></td>
<td><select id="noselect" name="noselect">
<option value="1">Select</option>
<option value="1">Choose Item</option>
</select>
</tr>
Amount下拉列表必须根据Trade,Item和Date填充来自MySQL的数据。
这是我的jquery:
$(document).ready(function () {
$('#exdate').change(function () {
var tradetype = $('[name="tradetype"]:checked').val();
var date = $('select[name=date1]').val()
var item = $('[name="item"]:checked').val();
$('#confirm_tradetype').text(tradetype);
$('#confirm_date1').text(date1);
$('#confirm_item').text(item);
$.ajax({
type: "POST",
url: "selectamount.php",
data: {
"tradetype": tradetype,
"item": item,
"date1": date1,
},
success: function (data) {
var source =
{
datatype: "json",
datafields:
{ name: 'Amount'},
url: 'selectamount.php'
};
var dataAdpater = new $.jqx.dataAdapter(source);
$("#noselect").jqxDropDownList(
{
source: dataAdapter,
displayMember: 'Amount',
valueMember: 'Amount',
});
}
});
});
});
这里是php查询(selectamount.php)
<?php
include_once "connect.php";
$conn = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password);
$form=$_POST;
$trade=$form['tradetype'];
$date1=$form['date1'];
$item=$form['item'];
$stmt = $conn->query("SELECT Amount FROM Contracts WHERE Trade='$trade' AND Item='$item' AND Date='$date1' ORDER BY Amount ASC");
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
echo json_encode($row);
}
$conn->db=null;
?>
答案 0 :(得分:0)
在尝试了一下代码后,这对我有用:
表单代码更改:将onchange="getAmount(this.value);"
添加到日期选择
<tr>
<td><label>Trade:</label></td>
<span class="text_11">
<td><input type="radio" id="Buy" name="tradetype" class="listen" required value="Buy"/><radio style="font-size: 16px;"> Buy</radio>
<input type="radio" id="Sell" name="tradetype" class="listen" value="Sell"/><radio style="font-size: 16px;"> Sell </radio></span></td>
</tr>
<tr>
<td><label>Item:</label></td>
<span class="text_11">
<td><input type="radio" id="Cloth" name="item" class="listen" required value="Cloth"/><radio style="font-size: 16px;"> Cloth</radio>
<input type="radio" id="Fruit" name="item" class="listen" value="Fruit"/><radio style="font-size: 16px;"> Fruit</radio></span></td>
</tr>
<tr>
<td class="select"><label>Date:</label></td>
<td><select id="exdate" name="date1" onchange="getAmount(this.value);">
<option value="2">Select</option>
<?php include_once "selectdate.php"?></td>
</select>
</tr>
<tr>
<td class="select"><label>Amount:</label></td>
<td><select id="amount" name="amount">
<option value="1">Select</option>
<option value="1">Choose Item</option>
</select>
</tr>
jquery代码更改:使用其id将数据从php分配给数量。
function getAmount(val) {
var tradetype = $('[name="tradetype"]:checked').val();
var date = $('select[name=date1]').val()
var item = $('[name="item"]:checked').val();
$('#confirm_tradetype').text(tradetype);
$('#confirm_date1').text(date1);
$('#confirm_item').text(item);
$.ajax({
type: "POST",
url: "selectamount.php",
data: {
"tradetype": tradetype,
"item": item,
"date1": date1,
},
success: function (data) {
$("#amount").html(data);
}
});
}
Php代码更改:将查询结果作为选项值回显。
<?php
include_once "connect.php";
$conn = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password);
$form=$_POST;
$trade=$form['tradetype'];
$date1=$form['date1'];
$item=$form['item'];
$stmt = $conn->query("SELECT Amount FROM Contracts WHERE Trade='$trade' AND Item='$item' AND Date='$date1' ORDER BY Amount ASC");
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
echo "<option value='" . $row['Amount'] . "'>" . $row['Amount'] . "</option>";
}
$conn->db=null;
?>