我正在使用模式弹出窗口,其中我使用jquery custombox使用以下代码。一旦弹出窗口打开,我想专注于一个特定的盒子。
我正在使用jquery自定义框v.1.1.3
$('.fadein').on('click', function ( e ){
$.fn.custombox(this), { effect: 'fadein'
});
e.preventDefault(); $('.auto').autoNumeric('init');
});
我想知道是否有人可以帮助解决此问题
答案 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();
});