Jump to content
  • 0

Вставка bbcode с помощью JS


eXeЛь
 Share

Question

Форумчане!

Вот такой вопрос. Делаю щас один сайт, появилась необходимость в системе Добавления новостей. В них хотелось бы использовать BBCode. Но я не знаю как реализовать кнопки вставки этих тэгов, чтобы их не писать вручную. Как на этом и всех остальных форумах.

Я посмотрел исходник этой странцы ("Начать новую тему") и увидел такую функцию:

<script type="text/javascript">
<!--
function insert_text(open, close)
{
msgfield = (document.all) ? document.all.req_message : document.forms['post']['req_message'];

// IE support
if (document.selection && document.selection.createRange)
{
msgfield.focus();
sel = document.selection.createRange();
sel.text = open + sel.text + close;
msgfield.focus();
}

// Moz support
else if (msgfield.selectionStart || msgfield.selectionStart == '0')
{
var startPos = msgfield.selectionStart;
var endPos = msgfield.selectionEnd;

msgfield.value = msgfield.value.substring(0, startPos) + open + msgfield.value.substring(startPos, endPos) + close + msgfield.value.substring(endPos, msgfield.value.length);
msgfield.selectionStart = msgfield.selectionEnd = endPos + open.length + close.length;
msgfield.focus();
}

// Fallback support for other browsers
else
{
msgfield.value += open + close;
msgfield.focus();
}

return;
}
-->
</script>

И действия на ОнКликах -

<input type="button" value=" B " name="B" onclick="insert_text('[b]','[/b]')" />

Я попробовал сделать у себя так - не получилось, почему-то. Кто может подсказать, что и как сделать? Может есть что-то попроще?

Заранее благодарен за ответ!:)

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

Если воспользуетесь либой http://debugger.ru/projects/browserextensi...cumentselection, то достаточно будет написать

function insert_text (s,e) {
var el = document.getElementById('req_message');
DocumentSelection.wrapSelection(el,s,e);
}

Ну или сделать так, как в деме.

Link to comment
Share on other sites

  • 0

Здравствуйте, всем!

Недавно был замечен такой глюк, что код, представленный nonickname'ом не работает в Мозилле и некоторых других браузерах...

Никто не поможет мне, может быть как-нибудь отредактировать скрипт, чтобы он работал и в этих браузерах?

Заранее благодарен!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy