如何关注jquery中模态弹出窗口上的特定框

时间:2014-08-21 10:19:21

标签: jquery popup modal-dialog focus

我正在使用模式弹出窗口,其中我使用jquery custombox使用以下代码。一旦弹出窗口打开,我想专注于一个特定的盒子。

我正在使用jquery自定义框v.1.1.3

$('.fadein').on('click', function ( e ){

        $.fn.custombox(this), {    effect: 'fadein'
        });
        e.preventDefault();   $('.auto').autoNumeric('init');
    });

我想知道是否有人可以帮助解决此问题

1 个答案:

答案 0 :(得分:0)

尝试使用open callback并在)之后立即删除this

$('.fadein').on('click', function ( e ){
    $.fn.custombox(this, { // remove the extra closing bracket after this. 
       effect: 'fadein',
       open: function () {
           $('.auto').autoNumeric('init'); // I think this you want after opening box
           // or your code to focus element
       }
    });
    e.preventDefault();
});