谷歌浏览器中Tinymce粘贴问题
我正在使用以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在这里举了一个例子:
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?