调用后jQuery禁用空格和制表符

时间:2017-01-12 14:09:01

标签: jquery html ajax

我有2个输入字段,类型为text和textarea,另外还有一个下拉列表。 在下拉列表中设置动作onchange(调用函数 - 见下文),简单的Ajax调用。

在那次通话之后,我无法使用空格或制表符按钮(在输入中),在控制台中没有错误或通知等。

ajax调用返回正确的数据,所有内容都可以查找,但某些键盘按钮被禁用

Ajax调用在

之下
$( "#information" ).on('change', function() {
    $.get( "/data/getData/"+ postalInput )
     .done(function (priceData) {
       priceData = JSON.parse(priceData);
        $.each(priceData, function (key, value) {
          if(value.id == fractionInput) {
            $.each(value.products, function (productId, productValue) {
              if(productValue.id == productInput) {
                price.empty();
                price.append( productValue.data );
              }
            });
          }
        });
      });
});

和2个输入,如

<?= $this->Form->input('comment', ['class' => 'form-control', 'type' => 'textarea']); ?>

下拉

<?= $this->Form->input('information', [
                      'class' => 'form-control',
                      'name' => 'information',
                      'id' => 'information',
                      'label' => false,
                      'onchange' => 'getData(value)'
                    ]); ?>

0 个答案:

没有答案