0
嗨我使用select2來樣式我的php文件上的依賴動態下拉列表,問題是當我從第一個下拉列表中選擇一個值從mysql數據庫獲取數據到第二個下拉列表它轉到它的默認樣式,所以我需要一些解決方案來解決這裏的問題是我的文件。
選擇2腳本:select2與依賴動態下拉PHP/JQuery
<script type="text/javascript">
$(document).ready(function() {
$(".js-example-basic-single").select2();
});
</script>
的index.php:`
<form name="form1" action="test.php" method="post">
<table>
<tr>
<td>
<select name="brand" id="branddd" class="js-example-basic-single" required>
<option disabled selected required >brand</option>
<?php
$res=mysqli_query($link,"select * from brand");
while($row=mysqli_fetch_array($res))
{
?>
<option value="<?php echo $row["id"];?>"><?php echo $row["name"];?></option>
<?php
}
?>
</select>
</td>
</tr>
<tr>
<td>
<select name="model" id="model" class="js-example-basic-single" required>
<option disabled selected required >model</option>
</select>
</td>
</tr>
<tr>
<td><input type="submit" value="submit"></td>
</tr>
</table>
</form>
腳本來獲取DB值:
<script type="text/javascript">
function change_brand()
{
var xmlhttp=new XMLHttpRequest() ;
xmlhttp.open("GET","ajax.php?brand="+document.getElementById("branddd").value,false) ;
xmlhttp.send(null) ;
document.getElementById("model").innerHTML=xmlhttp.responseText ;
}
$(function(){
$('#branddd').on('change',function(){
this.value && // if value!="" then call ajax
$.get('ajax.php',{brand:this.value},function(response){
$('select[name="model"]').html(response);
});
});
});
</script>
ajax.php:
<?php
$link=mysqli_connect("localhost","root","");
mysqli_select_db($link,"test_db");
$brand=$_GET["brand"];
if($brand!="")
{
$res=mysqli_query($link,"select * from model where brand_id=$brand");
echo "<select>";
while($row=mysqli_fetch_array($res))
{
echo "<option>"; echo $row["name"]; echo "</option>";
}
echo "</select>";
}
?>
感謝您的答案,所以u能請指導我如何添加 「ID」, 「名稱」, 「類」 屬性,我的回聲「
已更新。這有幫助嗎? –
非常感謝你救救我,第一個建議終於奏效了 – Mouhssine