1

我找到了这段代码:

ed.windowManager.open({
                    file: url + '/youtube.htm',
                    width: 320 + parseInt(ed.getLang('example.delta_width', 0)),
                    height: 120 + parseInt(ed.getLang('example.delta_height', 0)),
                    inline: 1
}

但我不知道如何使用它打开一个空白的新窗口,有人可以帮我吗?

谢谢。

4

1 回答 1

0

你可以使用这个(没有tinymce解决方案)

window.open (url + '/youtube.htm', "mywindow","resizable=1,inline=1,width="+320 + parseInt(ed.getLang('example.delta_width', 0))+"height="+120 + parseInt(ed.getLang('example.delta_height', 0)) );

以下是有关如何使用所有可能选项的教程的链接:http ://www.javascript-coder.com/window-popup/javascript-window-open.phtml

下面是一些可以在 tinymce 上运行的代码,并且可以很容易地与 tinymce 编辑器实例进行通信:

ed.windowManager.open({
  url: tinymce.baseURL + '/plugins/myplugin/test.html', // empty?
  width: 600 + parseInt(ed.getLang('example.delta_width', 0)),
  height: 200 + parseInt(ed.getLang('example.delta_height', 0)),
  inline: true
}, {
  own_param: 'my_param',
  own_param2: 'my_param2'
});
于 2011-08-31T07:57:12.207 回答