将标签插入文本区域

发布于 2024-10-26 04:28:57 字数 429 浏览 3 评论 0 原文

我正在开发自己的论坛软件,现在正在做编辑器。 好吧,我想制作一些 ofc 标签,例如 [b] 和 [i]。

我怎样才能做到这一点?好吧,我找到了这个线程: Insert text into textarea with jQuery

并使用了这个:

$('a').click(function() //this will apply to all anchor tags
{ 
   $('#area').val($('#area').val()+'[b][/b]'); 
})

但我也想在标签之间、[b] 和 [/b] 之间指向正确的位置,我该怎么做?

I'm developing my own forum software, and i am now doing the editor.
Well i want to make some tags ofc, like [b] and [i].

How can i do that? Well, i found this thread: Insert text into textarea with jQuery

and used this:

$('a').click(function() //this will apply to all anchor tags
{ 
   $('#area').val($('#area').val()+'[b][/b]'); 
})

But i also want to point just right between the tags, between the [b] and the [/b], how can i do that?

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

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

发布评论

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

评论(2

合久必婚 2024-11-02 04:28:57

请参阅此问题: jQuery Set Cursor Position in Text Area

/edit:抱歉,这已经在评论中得到了回答。

See this question: jQuery Set Cursor Position in Text Area

/edit: Sorry this was already answered in the comments.

递刀给你 2024-11-02 04:28:57

如果这超出了范围,请直接说出来,但您也可以使用 JQuery selectedText 插件。我认为这可能对您的最终产品有帮助(否则,对于您的问题,比利·穆恩提到的上一个问题就足够了)

If this is out of scope, please just say it, but you can also select text and wrap them in the [b][/b] tags by using the JQuery selectedText plugin. I think it might be helpful for your final product (otherwise, for your question, the previous question as mentioned by Billy Moon is sufficient)

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