|
|
|
ทำให้ combo แสดง placeholder เหมือนอย่าง input จะต้องกำหนดอย่างไรคะ |
|
|
|
|
|
|
|
ผมไม่ได้ใช้ placeholder สำหรับ select combobox
ใช้แบบนี้นะครับ
Code (JavaScript)
<select>
<option value="" disable selected >--กรุณาเลือก--</option>
<option value="1">รายการที่1</option>
......
</select>
|
ประวัติการแก้ไข 2015-05-11 13:25:31
|
|
|
|
Date :
2015-05-11 13:25:07 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วคะ
Code (PHP)
function populateFrom() {
$.getJSON('./index.php?c=service&m=execute&ctl=flight-booking&xaction=readRouteFrom', null, function(data) {
var select = $('#routeFrom');
var options = select.attr('options');
$('option', select).remove();
var opt = '<option value="" disabled selected>Origin</option>';
$(select).append(opt);
$.each(data.rows, function(index, array) {
options[options.length] = new Option(array['routeName'], array['routeCode']);
});
populateTo();
});
}
|
ประวัติการแก้ไข 2015-05-11 13:29:05
|
|
|
|
Date :
2015-05-11 13:28:48 |
By :
Baitong_ch |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2015-05-11 16:55:53 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|