0

我试图让用户在评论系统(穷人的文本编辑器)中使用的 textarea 中对文本进行简单的格式化。希望允许他们用光标选择文本,然后单击按钮对其进行格式化。我的问题是如何让 javascript 抓取并返回选定的文本。想象一下它应该是这样的:

<script>
function formatText(field) {
//gets text
var text;
text = field.value.substring(field.selectionStart, field.selectionEnd);
//formats it
var text = '<b'>+text+'</b>';
//returns it
field.value.substring(field.selectionStart, field.selectionEnd); = text;
}
</script>

<body>
<textarea id="field"></textarea><button onclick="formatText('field')">Make bold</button>
</body>

更新:以下代码获取选定的文本,对其进行格式化,然后将其发送回 textarea——但是,它会替换 textarea 中的所有文本......所以我只需要替换 textarea 中选定文本的方法——而不是全部——我'将完成:

<head>
    <script type="text/javascript">
        function GetSelection () {
            var selection = "";

            var textarea = document.getElementById("field");
            if ('selectionStart' in textarea) {
                    // check whether some text is selected in the textarea
                if (textarea.selectionStart != textarea.selectionEnd) {
                    selection = textarea.value.substring  (textarea.selectionStart, 

textarea.selectionEnd);
                }
            }
            else {  // Internet Explorer before version 9
                    // create a range from the current selection
                var textRange = document.selection.createRange ();
                    // check whether the selection is within the textarea
                var rangeParent = textRange.parentElement ();
                if (rangeParent === textarea) {
                    selection = textRange.text;

                }
            }

            if (selection == "") {
                alert ("No text is selected.");
            }
            else {
                selection = "<b>"+selection+"</b>";
        document.getElementById('field').value = selection;

            }
        }
    </script>
</head>
<body>
    <textarea id="field" spellcheck="false">Select some text within this field.</textarea>
    <button onclick="GetSelection ()">Get the current selection</button>
</body>

我认为有一种方法可以指定 document.getElementByID.value.substr 可能会这样做,但我不知道语法。

4

2 回答 2

1

这是:穷人的​​文本编辑器。使用应用于 textarea 中的文本的 SelectionStart 和 SelectionEnd 来获取选定的文本。然后在重新格式化后,将 textarea 文本从三个部分重新组合在一起,选择文本之前,选择文本和选择文本之后。使用 document.getElementById('textareaid').value = 组装文本放回 textarea。

<html>
<head><script>
function format () {
    // code for IE
    var textarea = document.getElementById("textarea");

    if (document.selection)
    {
    textarea.focus();
    var sel = document.selection.createRange();
    // alert the selected text in textarea
    alert(sel.text);

    // Finally replace the value of the selected text with this new replacement one
    sel.text = '<b>' + sel.text + '</b>';
    }

    // code for Mozilla

    var textarea = document.getElementById("textarea");

    var len = textarea.value.length;
    var start = textarea.selectionStart;
    var end = textarea.selectionEnd;
    var sel = textarea.value.substring(start, end);

    // This is the selected text and alert it
//    alert(sel);

    var replace = '<b>' + sel + '</b>';

    // Here we are replacing the selected text with this one
    textarea.value = textarea.value.substring(0,start) + replace + textarea.value.substring(end,len);

var formatted = textarea.value;
document.getElementById('field').value = formatted;
}

</script></head>
<body>
<textarea id="textarea">One two three four five six seven eight</textarea><button onclick="format 

()">Format selected text</button>
</body>
</html>
于 2012-05-03T02:06:55.477 回答
0

在您的代码中存在以下问题:

  1. var text

每行必须以;

  1. <button onclick="formatText("field")">

开始一个引号必须以引号结尾,如果你需要引号,即对于像“这是我要处理的文本”这样的字符串,那么里面的那些引号需要是单引号

onclick="formatText('field')"
  1. text = field.value.substring(field.selectionStart, field.selectionEnd);

该代码将一个字符串传递给该函数,该函数没有值属性\方法。我们想要文本字段中的文本,所以我们使用持有它的“元素”document.getElementById('field')

然后,我们只需设置该元素的样式即可。

如果您需要替换文本,只需将值分配给

document.getElementById('field').value = ...

这是一个例子..

<script type="text/javascript" >
  function formatText() {
      //gets text
      //text = document.getElementById('field').value;
      //formats it
      document.getElementById('field').style.fontWeight = "bold";
  }
</script>

</head>
<body>
<textarea id="field"></textarea><button onclick="formatText()">Make bold</button>
</body>

在这里查看http://jsfiddle.net/YcpUs/

于 2012-05-02T16:00:14.810 回答