Jquery禁用按钮直到准备好

时间:2011-06-23 10:57:50

标签: javascript jquery

我在这个网站的中间http://offline.raileisure.com/

右侧的预订部分,我需要能够立即禁用该书按钮,直到日期,持续时间以及成人和儿童号码设置为止。

我无法理解如何做到这一点..

任何想法??

由于 利

1 个答案:

答案 0 :(得分:1)

您可以绑定到所有表单元素上的change处理程序...例如:

$(':input').change(function() {
    var complete;

    // check if your form is complete here

    // assumes the id of the button is 'bookNowButton'
    if (!complete) $('#bookNowButton').attr('disabled', true);
    else $('#bookNowButton').removeAttr('disabled');
});

为简化启用/停用功能,我或许建议您将“立即预订”按钮更改为<input type="image" />