我正在定制一个 wordpress 主题。当用户单击提交按钮时,它应该被禁用。
我不知道该怎么做。这是代码。有人可以告诉我如何做到这一点。
jQuery('.modal-content').dialog({
autoOpen: false,
title: 'Confirm your Res',
resizable: false,
height: 175,
width: 300,
modal: true,
buttons: {
Submit: function() {
jQuery('form[name="booking-form"]').get(0).submit();
},
Cancel: function() {
jQuery(this).dialog("close");
}
}
});