Jump to content

serega

Newbie
  • Posts

    4
  • Joined

  • Last visited

serega's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. Немогу найти похожую функцию в js ... подскажите есть такая ?
  2. serega

    JS и bb теги

    наш?л прям в движке этого форума : 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; }
  3. Есть окно где мы набираем текст, потом выделяем какуето строчку нажимаем на кнопку ( например какой-то бб тег ) и вокруг это текста появляются теги = [.b]воот подскажите, как это реализовать эффективно + как реализовать появление текста в конце всего сообщения ( как бы кнопку нажал и в конце появилось нечто вроде подписи )
×
×
  • 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