-4
我有2個按鈕的窗體。僅當您按下id ='liq'的按鈕時才需要發送ajax。如何檢查點擊提交
$(document).on('submit','#order_form',function(){
var _data = $(this).serialize();
$.ajax({
url: window.location.href,
dataType: "html",
type: "POST",
data: _data,
success: function(_form){
$('body').append(_form);
$("#liqpay").submit();
}
});
return false;
});
});
請顯示錶格... – barudo
檢查活動目標。 – CBroe
@CBroe - 事件目標是表單元素。這沒有幫助。 – Quentin