在文本区域中复制带有项目符号的文本内容

在文本区域中复制带有项目符号的文本内容

本文介绍了在文本区域中复制带有项目符号的文本内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我尝试从div复制带项目符号的文本并使用jquery将其粘贴到html textarea时,它仅显示该文本,而没有显示任何项目符号.有什么办法可以做到吗?可能正在使用jquery或其他任何方法?

When I try to copy the bullet-ed text from div and paste it to html textarea using jquery, it shows only the text and no bullets are showing. Are there any way I can do it? May be using jquery or any other method?

我也只想使用textarea,而没有像ckeditor这样的文本编辑器.

And also I only want to use textarea and no text editor like ckeditor and such.

就这么简单,这是我的文字

It's as simple like this, this is my word text

•一些文本

•一些文本

但是当我将其粘贴到文本区域时,它只是显示

But when I paste it in the text area it's just showing

某些文本

某些文本

我认为jquery可以提供帮助.但是我无法获取剪贴板的内容,即使我以某种方式获取剪贴板的内容,这些子弹也会被javascript检测到,因此我可以将它们替换为li标签.任何帮助!!!

I think jquery can help. But I'm unable to get the contents of clipboard, and even if some how I get it will the bullets be detected by javascript so that I can replace them with li tag. Any help!!!

推荐答案

您可以尝试使用jQuery格式化文本并将其转换为••,而可以使用div替代textarea.在这种情况下,您可以使用所有格式.只需使用javascript或jQuery发送和接收数据并替换字符即可.

You can try to format your text with jQuery and transform into • or • and instead textarea you can use div. In that case you ca play with all formats. Just use javascript or jQuery to send and recive data and replace characters.

->教程

-> Tutorial

->小提琴

-> Fiddle

这篇关于在文本区域中复制带有项目符号的文本内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 23:04