|
|
|
ต้องการเอาค่า ที่ถูกสร้าง โดยการ Appen ขึ้นมาไหม่ เอามาใช้ในฟังชั้น อีกตัว ต้องทำอย่างไรคัรบ |
|
|
|
|
|
|
|
Code (JavaScript)
<script type="text/javascript">
$(document).ready(function(){
$("#qt_number").change(function(){
$.ajax({
url: "resultMySQL.php" ,
type: "POST",
data: 'keyword=' +$("#qt_number").val(),
success: function (result) {
var obj = jQuery.parseJSON(result);
$.each(obj, function(key, val) {
$("#test").append(val["c_id"]);
});
}
});
});
});
</script>
จากโคท จะได้ ค่ามาเก็บไว้ใน <div id="test"></div>แต่ต้องการเค่าจาก DIV ที่ถูกสร้างมาไหม่ เอามาใช้อีก 1 ฟังชั่น
Code (JavaScript)
<script>
$(function(){
var idcs = $("#test").val();
$( ".typeahead" ).autocomplete({
minLength: 0,
source: "get_data.php?idc="+idcs,
open:function(){
obj1 = $(this).data("obj1");
obj2 = $(this).data("obj2");
obj3 = $(this).data("obj3");
obj4 = $(this).data("obj4");
},
select: function( event, ui ) {
$("#"+obj1).val(ui.item.id);
$("#"+obj2).val(ui.item.use);
$("#"+obj3).val(ui.item.price);
$("#"+obj4).val(ui.item.product_id);
}
});
});
</script>
เเต่ตอนส่งค่า get_data.php?idc=&term=XX
คือค่า idc ที่อยู่ใน <div>ที่ถูกยัดค่าได้ ไม่ยอมมา ต้องเรียกใช้เเบบไหนคัรบ
Tag : PHP, jQuery
|
|
|
|
|
|
Date :
2018-07-04 13:40:59 |
By :
tongar |
View :
786 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|