|
|
|
คือต้องการดึงข้อมูลผ่าน db โดยใช้ script ได้รึป่าวคะ |
|
|
|
|
|
|
|
คือตอนนี้ทำเป็น autocomplete แล้วตอนนี้คือ ทำให้มันเลือกจาก script ไว้อยู่ค่ะ แต่ต้องการใช้ดึงข้อมูลจาก DB สามารถทำได้ไหมค่ะ
ขอบคุณมากค่ะ
Code (JavaScript)
$(function(){
var currencies = [
{ value: 'Afghan afghani', data: 'AFN' },
{ value: 'Albanian lek', data: 'ALL' },
{ value: 'Algerian dinar', data: 'DZD' },
{ value: 'European euro', data: 'EUR' },
{ value: 'Angolan kwanza', data: 'AOA' },
{ value: 'East Caribbean dollar', data: 'XCD' },
{ value: 'Argentine peso', data: 'ARS' },
{ value: 'Armenian dram', data: 'AMD' },
{ value: 'Aruban florin', data: 'AWG' },
{ value: 'Australian dollar', data: 'AUD' },
];
// setup autocomplete function pulling from currencies[] array
$('#autocomplete').autocomplete({
lookup: currencies,
onSelect: function (suggestion) {
var thehtml = '<strong>Currency Name:</strong> ' + suggestion.value + ' <br> <strong>Symbol:</strong> ' + suggestion.data;
$('#outputcontent').html(thehtml);
}
});
});
Tag : MySQL, JavaScript, jQuery
|
|
|
|
|
|
Date :
2014-08-08 17:30:29 |
By :
mrronalz |
View :
1254 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เพิ่มโค้ดไม่มากครับ
$(function(){
var currencies = [
<?php
// ติดต่อฐานข้อมูลตรงนี้
$sql = "select currency,code from tbcurrency ";
$Qres = mysql_query($sql) or die(mysql_error());
while($data = mysql_fetch_assoc($Qres)){
echo "{ value: '{$data["currency"]}', data: '{$data["code"]}' },\n";
}
?>
];
// setup autocomplete function pulling from currencies[] array
$('#autocomplete').autocomplete({
lookup: currencies,
onSelect: function (suggestion) {
var thehtml = '<strong>Currency Name:</strong> ' + suggestion.value + ' <br> <strong>Symbol:</strong> ' + suggestion.data;
$('#outputcontent').html(thehtml);
}
});
});
|
|
|
|
|
Date :
2014-08-08 18:44:22 |
By :
cowboycnx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ้อ เพิ่มแบบนี้ได้เลย ไม่คิดว่าจะทำแบบนี้ได้ค่ะ ขอบคุณมากนะค่ะ :)
|
|
|
|
|
Date :
2014-08-11 10:46:59 |
By :
mrronalz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|