我正在开发一个ckeditor插件。我有一个这样的 iframe 对话框:
CKEDITOR.dialog.add( 'imageDialog', function ()
{
return {
title : 'add image',
minWidth : 700,
minHeight : 360,
contents :
[
{
id : 'iframe',
label : 'Lien',
expand : true,
elements :
[
{
type : 'iframe',
src : 'index.php',
width : '100%',
height : '100%',
onContentLoad : function() {
}
}
]
}
],
buttons: {disabled:true}
};
} );
我想在每次对话框打开时更改 src url。我怎样才能做到这一点?