Jump to content
  • 0

JS и bb теги


serega
 Share

Question

Есть окно где мы набираем текст, потом выделяем какуето строчку нажимаем на кнопку ( например какой-то бб тег ) и вокруг это текста появляются теги = [.b]воот

подскажите, как это реализовать эффективно +

как реализовать появление текста в конце всего сообщения ( как бы кнопку нажал и в конце появилось нечто вроде подписи )

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

наш?л прям в движке этого форума :

 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;
}

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 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