我添加了一个插件来在对话框窗口中打开一个 html 页面
// Adds a menu item to the tools menu
editor.addMenuItem('helloworld', {
text: 'Example plugin',
context: 'tools',
onclick: function() {
// Open window with a specific url
editor.windowManager.open({
title: 'TinyMCE sitfe',
url: 'test.htm',
width: 400,
height: 300,
buttons: [{
text: 'Close',
onclick: 'close'
}]
});
}
});
test.htm 看起来像这样:
<html>
<head>
</head>
<body>
<input value="testing"></input>
</body>
</html>
我想添加一个在对话框关闭时将“测试”插入编辑器窗口的功能。与这个问题非常相似: 如何从 TinyMCE 插件中获取值? 但是我无法打开他提供的链接。谢谢-