谷歌浏览器中Tinymce粘贴问题

发布于 2024-11-28 13:49:54 字数 743 浏览 1 评论 0原文

我正在使用以下 javascript 代码将双
转换为段落。

paste_preprocess : function(pl, o) {
   o.content = o.content.replace(/\<br\>\<br\>/gi, '</p><p>');
   o.content = '<p>'+o.content+'</p>';
},

当我从记事本复制文本并粘贴它时,此代码在 Firefox 中工作正常,但在 Google Chrome 中,它在顶部和底部添加

 

而不是 < ;p> 我看到一个
 标签和两个 
这是示例输出

<p> </p>
<pre>http://www.google.com/support<br /><br />visit Google.com for more information</pre>
<p> </p>

上面的 JavaScript 代码应该添加段落标签不是

 想知道为什么它不适用于 Chrome?

I am using following javascript code to convert double <br> into paragraph.

paste_preprocess : function(pl, o) {
   o.content = o.content.replace(/\<br\>\<br\>/gi, '</p><p>');
   o.content = '<p>'+o.content+'</p>';
},

This code works fine for firefox when I copy text from notepad and paste it but in Google chrome it adds <p> </p> on top and bottom and instead of <p> i see one <pre> tag and double <br> here is the sample output

<p> </p>
<pre>http://www.google.com/support<br /><br />visit Google.com for more information</pre>
<p> </p>

The above JavaScript code supposed to add paragraph tag not <pre> Wondering why its not working for Chrome?

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

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

发布评论

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

评论(1

请爱~陌生人 2024-12-05 13:49:54

我在这里举了一个例子:

http://jsfiddle.net/MH6kw/2/

..它似乎工作完美。

您必须检查右下框中的元素才能看到结果,但我也在上面写了说明。

我相当确定“content”属性仅应由元标记使用,并且 obj.content 属性仅应用于访问元标记。

你在什么元素上使用这个?

I made an example of this here:

http://jsfiddle.net/MH6kw/2/

..and it seems to work flawlessly.

You have to inspect element on the lower right box to see the results, but I also wrote instructions on there.

I am fairly certain the "content" attribute is only supposed to be used by meta tags, and the obj.content property is only supposed to be used to access meta tags.

What element are you using this on?

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