我有一个simpledialog2框,它功能齐全但我试图找到一种在加载函数时调用它的方法。
例如我有
$('<div>').simpledialog2({
mode : 'blank',
animate : false,
transition : 'none',
// dialogAllow : true,
// dialogForce : true,
headerText : 'Statement Metadata',
blankContent : "HTML HERE"
});
HTML HERE加载后会触发什么事件?或者,一旦simpledialog2准备就绪,我怎么能调用javascript?
与pageshow事件处理程序类似...
答案 0 :(得分:1)
尝试以下方法:
$('<div>').simpledialog2({
mode : 'blank',
animate : false,
transition : 'none',
// dialogAllow : true,
// dialogForce : true,
headerText : 'Statement Metadata',
blankContent : "HTML HERE",
callbackOpen: function() {
var me = this;
alert('opened');
setTimeout(function() {me.close();},2000);
}
});
小提琴: