donoworuq450547191 2016-10-27 20:53
浏览 929
已采纳

如何使用内联TinyMCE编辑器提交没有输入的表单内容?

Here's how they tell you to do it in the docs.

  <form method="post" action="process.php">
    <div class="wysiwyg">Click here to edit the first section of content!</div>
    <input type="submit">
  </form>

Then in the head of the document:

tinymce.init({ selector: '.wysiwyg',
        inline: true,
etc...

But I need to assign a name to the content of the div so my php processing page can get the content. How would I do this?

I tried to change to the get method, and it seems to use "mce_0" as a name.

  • 写回答

1条回答 默认 最新

  • dongliu4320 2016-10-27 21:37
    关注

    Try to do it manually, for example, put an id to your wysiwyg

    <div id="my-wysiwyg" class="wysiwyg">Click here to edit the content!</div>
    

    then get the value

    var txt = $('#my-wysiwyg').html();
    

    then make a post manually

    $.post('my.php', {wysiwyg: txt}, function onSuccess(response){
      console.log(response);
    });
    

    Then, in your php, you will get a name wysiwyg. This is just an illustrative example of how you can do it, adapt to your context.

    Check this out. Hope it helps

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型