将变量从tinymce传递到jbimages

时间:2013-11-20 11:32:06

标签: tinymce-4

我正在尝试将变量从tinyMCE传递给jbimages。我拥有的是:

tinymceInstance = tinymce.init({
    selector: "textarea#desc",
    theme: "modern",
    skin: "light",
    relative_urls: false,
    width: 800,
    height: 300,
    relative_urls: false,
    plugins: [
         "link image preview hr anchor pagebreak ",
         "searchreplace wordcount visualblocks visualchars code nonbreaking",
         "directionality textcolor jbimages"
   ],
   content_css: "css/content.css",
   toolbar: "insertfile undo redo | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist | link image jbimages | print preview media fullpage | forecolor | spellchecker", 
    myVariable: 12345
 });

jbimages是一个上传图片的插件。在jbimages中的config.php文件中 我有以下代码执行:

$config['img_path'] = '/images'; // Relative to domain name
$config['upload_path'] = $_SERVER['DOCUMENT_ROOT'] . $config['img_path']; // Physical path. [Usually works fine like this]

如何从tinyMCE检索变量myVariable并在config.php中使用它。我尝试了一些我在网上找到的东西,但似乎没什么用。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

我认为您需要使用jQuery通过会话变量传递它。当php在服务器上运行时,你的tinymce在客户端(你的计算机)上运行。 看看这个问题和答案。你可能会在那里找到你想要的东西: Setting session variable in php through jquery click event