Когда я пытаюсь это сделать, это работает отлично:
$.ajax({
url: 'index.php?route=product/product/quoteProduct',
type: 'post',
data: $('#product input[type=\'radio\']:checked, #product select),
dataType: 'json',
success: function(json) {
// ...
}
});
Теперь я хочу отправить переменную с объектом $('#product input[type=\'radio\']:checked, #product select)
. Я попытался это:
$.ajax({
url: 'index.php?route=product/product/quote',
type: 'post',
data: {
quantity: quantity,
option: $('#product input[type=\'radio\']:checked, #product select')
},
dataType: 'json',
success: function(json) {
// ...
}
});
Однако моя консоль предупреждает:
TypeError: 'stepUp' вызывается для объекта, который не реализует интерфейс HTMLInputElement.