很抱歉这个简单的问题,但是我在任何地方都找不到答案...我也是经验为0的Javascript新手,所以我真的很坚持。

无论如何,我有一个简单的按钮单击就可以使用的功能:

<input type="button" value="Add Item" onclick="addToCartt('MODELNUMBER');">


我需要从当前设置中更改该设置,在当前设置中,您可以单击并单击按钮,然后将带有ModelNumber参数的函数运行到一个窗体中,在该窗体中您手动输入ModelNumber并通过html窗体命中return,并使用ModelNumber作为运行运行addToCartt函数论据。

谢谢你的帮助

function addToCartt(product_id, quantity) {
      quantity = typeof(quantity) != 'undefined' ? quantity : 1;

      $.ajax({
        url: 'index.php?route=checkout/cart/addorder',
        type: 'post',
        data: 'product_id=' + product_id + '&quantity=' + quantity,
        dataType: 'json',
        success: function(json) {
          $('.success, .warning, .attention, .information, .error').remove();



        $('#maincontent').addClass('active');
        $('#maincontent').load('index.php?route=module/cart');
        // $('#cart').live('mouseleave', function() {
        // $(this).removeClass('active');
        // });


          if (json['redirect']) {
            location = json['redirect'];
          }

          if (json['success']) {
            $('#notification').html('<div class="success" style="display: none;">' + json['success'] + '<img src="close.png" alt="" class="close" /></div>');

            $('.success').fadeIn('slow');

            $('#cart-total').html(json['total']);
            $('#new_total').html(json['new_total']);

            // $('html, body').animate({ scrollTop: 0 }, 'slow');
          }
        }
      });
    }

最佳答案

HTML:

<form name='frm'>
    <input type='text' id='model' />
</form>


javascript:

$(function() {
    $('#model').keypress(function(e){
        if (e.which === 13) {
            $(frm).submit()
        }
    });
    $('form').submit(function(e) {
        e.preventDefault();
        addToCart($('#model').val());
    });
});


如果模型是表单中唯一的输入,则不需要keypress事件。

07-24 17:03