任何人都可以幫助我? 我想顯示我的數據庫數據到一個選項標籤,但它沒有顯示任何東西。我已經嘗試爲此編寫代碼,但該代碼無法將我的數據顯示到html選項標記中。有人請幫我解決我的問題。如何將數據從數據庫顯示到選項標記html?
這是我的代碼,我讓
// JavaScript Document
// for make the option tag
$(function() {
$('#chkveg').multiselect({
includeSelectAllOption: true
});
});
// for call the data from my database
$(document).on('click','#nama_check',function(e){
$.ajax({
type:"POST",
url:"../php/absen/absen_karyawan_autocomplete.php",
success: function(data){
var list = JSON.parse(data);
for(var i=0; i < list.length; i++){
$('#chkveg').val((list[i]['bagian']));
}
return false;
}
});
});
<script src="https://davidstutz.github.io/bootstrap-multiselect/docs/js/bootstrap-3.3.2.min.js"></script>
<link href="https://davidstutz.github.io/bootstrap-multiselect/docs/css/bootstrap-3.3.2.min.css" rel="stylesheet"/>
<link href="https://davidstutz.github.io/bootstrap-multiselect/dist/css/bootstrap-multiselect.css" rel="stylesheet"/>
<script src="https://davidstutz.github.io/bootstrap-multiselect/dist/js/bootstrap-multiselect.js"></script>
<form id="form1" method="post">
<div style="padding:20px">
<select id="chkveg" multiple="multiple">
</select>
</div>
</form>
仍然沒有工作..:在' '+列表[I] [ 'bagian'] +' –
對不起<未捕獲的ReferenceError列表中沒有定義> - 我的錯誤。 'list [i]'應該是'data [i]'。我更新了你的答案 –
thx @Rory ..我會嘗試 –