TinyMCE - 插入隐藏的 INPUT 标签

发布于 2025-01-07 14:04:47 字数 538 浏览 0 评论 0原文

这里确实需要一些帮助...我有以下代码:

<a href="javascript:;" onmousedown="addMailMergeItem()">[Insert Item]</a>


<script type="text/javascript">
function addMailMergeItem(){
  tinymce.execCommand('mceInsertContent',false,'<input type=\'hidden\' name=\'a\' value=\'1\'/>');
}
</script>

但是,单击 [插入项目] 时添加的 HTML 是:

<P><INPUT value=1 type=hidden name=a></P>

这使得输入字段可见,因为“隐藏”类型无法识别!

我怎样才能修改 execCommand() 行来实现我想要的..?

塔米姆。

Really need some help here...I have the following code:

<a href="javascript:;" onmousedown="addMailMergeItem()">[Insert Item]</a>


<script type="text/javascript">
function addMailMergeItem(){
  tinymce.execCommand('mceInsertContent',false,'<input type=\'hidden\' name=\'a\' value=\'1\'/>');
}
</script>

However on clicking [Insert Item] the HTML added is:

<P><INPUT value=1 type=hidden name=a></P>

which makes the input field visible as the 'hidden' type is not recognised!

How can I amend the execCommand() line to achieve what I am after..?

Tamim.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

兲鉂ぱ嘚淚 2025-01-14 14:04:47

尝试

    <script type="text/javascript">
function addMailMergeItem(){
  tinymce.execCommand('mceInsertContent',false,'<input type="hidden" name="a" value="1"/>');
}
</script>

try

    <script type="text/javascript">
function addMailMergeItem(){
  tinymce.execCommand('mceInsertContent',false,'<input type="hidden" name="a" value="1"/>');
}
</script>
中二柚 2025-01-14 14:04:47

除了 Andrei G 的答案之外,您还应该检查 valid_elements 是否包含输入元素的给定属性。否则该属性将被tinymce 清理函数删除。

Additional to Andrei Gs answer you should check if valid_elements contains the given attributes for input elements. Otherwise the attribute gets stripped by the tinymce cleanup function.

梦在深巷 2025-01-14 14:04:47

我没有深入研究这个问题,我找到了答案并为我工作了一个魅力:

cleanup_on_startup: false,
trim_span_elements: false,
verify_html: false,
cleanup: false,
convert_urls: false,

I didn't dig much into this, i found the answer and worked for me as a charm:

cleanup_on_startup: false,
trim_span_elements: false,
verify_html: false,
cleanup: false,
convert_urls: false,
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文