有这样的html
<form action="/config/lang" method="POST" >
<select class="select_send_ajax selectpicker">
<option>1</option>
<option>2</option>
</select>
</form>
还有负责处理的js
$('.select_send_ajax').on('change', function () {
this.form.submit();
});
$('form').submit(function(event) { //Отправка всех форм
console.log(123);
event.preventDefault();
}
当我选择某些内容时,select
会立即发送表单,尽管我们已禁用表单提交。有必要选择时,select
表单会尝试走,但由于我们禁止它,它只会显示123
在控制台中
(邮件正文必须至少为 30 个字符;您输入了 22 个字符。)