javascript - Jquery 自动完成不填充在其他领域

标签 javascript jquery html autocomplete

场景: 我有一个下拉列表,用户可以在其中选择 vendor 。根据他们选择的 vendor ,用户可以使用纸质搜索(使用 JQuery 自动完成)搜索项目。选择一个项目时,descriptionpriceper_pack 文本框会填充该特定项目的相关信息(此信息是拉取的来 self 的数据库)。

这是目前的样子: enter image description here

问题: 当用户从纸质搜索中选择一个项目时,上述文本框中没有填充相关信息,我不知道为什么会这样。有谁知道这是为什么吗?

这是论文搜索的代码:

$(function() {
window.globalVar = 0;

// Skip the filled description boxes
for (var i=0; i<10; i++)
{
    if($('#description_'+window.globalVar).val() != "")
    {
        window.globalVar++;
    }
}

// Write the paper description and price for the selected paper
function log( message ) {
    var values = message.split('|');
    $('#description_'+window.globalVar).val(values[0]);
    $('#priceper_'+window.globalVar).val(values[1]);
$('#per_pack_'+window.globalVar).val(values[2]);
    window.globalVar++;
    console.log(window.globalVar);
}

// Search the Paper db
$( "#supplier_search" ).autocomplete({
  source: function( request, response ) {
    $.ajax({
      url: "http://mpc.vario/mis_pp/common/pp_json",
      dataType: "jsonp",
      data: {
        featureClass: "P",
        style: "full",
        maxRows: 25,
        name_startsWith: request.term,
        supplier: $('#supplier').val()
      },
      success: function( data ) {
        console.log(data);
        response( $.map( data, function( item ) {
          return {
            label: item.name,
            value: item.name + '|' + item.value + '|' + item.pack
          }
        }));
      }
    });
  },
  minLength: 2,
  select: function( event, ui ) {
    log( ui.item.value );
    $(this).val('');
    return false;
  },
  open: function() {
    $( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-stop" );
  },
  close: function() {
    $( this ).removeClass( "ui-corner-top" ).addClass( "ui-corner-all" );
  }
});
 });

这是添加/删除行的代码:

 $(document).ready(function () {
    $counter = 1;
    $('#buttonadd').click(function () {
        $counter++;
        $('#invoiceitems > tbody:last').append('<tr><td><input type="button" class="buttondelete" value="Delete"/></td>\
        <td><input type="text" name="item[' + $counter + '][description]" id="description_" class="description" size="85" maxlength="70" value="" /></td>\
        <td><input type="text" name="item[' + $counter + '][priceper]" id="description_" class="priceper" size="10" maxlength="9" value="" /></td>\
        <td><input type="text" name="item[' + $counter + '][per_pack]" id="per_pack_" class="per_pack" size="10" maxlength="9" value="" /></td>\
        <td><input type="text" name="item[' + $counter + '][quantity]" id="quantity_" class="quantity" size="10" maxlength="9" value="" /></td>\
        <td><label class="subtotal"></label></td></tr>');

    });
    $('table#invoiceitems').on('keyup', '.quantity , .priceper',function () {
        UpdateTotals(this);
    });

    $counter = 1;
       $('table#invoiceitems').on('click','.buttondelete',function () {
        $counter++;
        if($('table#invoiceitems tbody tr').length==1){
            alert('Cant delete single row');
            return false;
        }
        $(this).closest('tr').remove();

    });
    CalculateSubTotals();
    CalculateTotal();
    });

最佳答案

因为详细信息字段的数量取决于“行号”(通过 window.globalVar)

确保在删除和添加新订单项时重新计算“事件”行。

设置字段值的代码是这个部分:

 $('#description_'+window.globalVar).val(values[0]);
 $('#priceper_'+window.globalVar).val(values[1]);
 $('#per_pack_'+window.globalVar).val(values[2]);

调试您的 javascript 并在您从下拉列表中选择项目时检查 window.globalVar 的值。您很可能会发现该值不正确,并且您正在尝试设置文档中不存在的控件的值。

关于javascript - Jquery 自动完成不填充在其他领域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20997388/

相关文章:

javascript - 设置动态创建的文本框中文本的格式

jquery mobile 水平控件组,混合,包括文本框

javascript - 文件上传旁边带有图像缩略图的 ExtJS FormPanel

javascript - 如何旋转HTML5 canvas已有的内容?

javascript - 如何在 javascript 多级对象中动态添加对父对象的引用?

javascript - PHP Jquery 选项卡 : content loads into one tab's panel

javascript - 如何从 Javascript 关联数组哈希表中检索值?

javascript - 未显示警报之前的 HTML

html - 图片列表的 RESTful 地址

jquery - 如何将数字更改为 JQUERY 图像 slider 上的图像