如何在bootbox上设置tabindex?

时间:2014-07-21 14:12:31

标签: javascript twitter-bootstrap bootbox

我有一个自定义确认对话框,我希望在btn-danger按钮上显示tabindex,以便我可以使用回车提交表单。

如何实现?

var config = {
    title: 'Confirm approval removal',
    message: "<em>" + self.$label.text() + "</em> is about to be removed. Please confirm the action.",
    buttons: {
        'cancel': {
            label: 'Keep approval',
            className: 'btn-default'
        },
        'confirm': {
            label: 'Remove approval',
            className: 'btn-danger'
        }
    },
    callback: function(result) {
        if (result) {
            self.$approvedCheckbox.prop('checked', false);
        } else {
            self.$approvedCheckbox.prop('checked', true);
            self.$requiredCheckbox.prop('checked', false);
        }

        self.markRequiredFields();
    }
};

bootbox.confirm(config);

我尝试添加tabindex属性,但它不起作用。

1 个答案:

答案 0 :(得分:0)

具有btn-primary类的按钮将获得自动对焦以进入完成状态。它还与btn-danger

一起使用
var config = {
    ...
    buttons: {
        'cancel': {
            label: 'Keep approval',
            className: 'btn-default'
        },
        'confirm': {
            label: 'Remove approval',
            className: 'btn-danger btn-primary' // this button will get the index and will be submitted on enter
        }
    },
    ...
};


bootbox.confirm(config);