Вставьте ссылку URL и текст заголовка в текстовое поле в месте расположения курсора из полей ввода формы с помощью JavaScript - PullRequest
0 голосов
/ 15 июля 2010

Я нашел некоторый код в stackoverflow, который вставляет текст из поля ввода текста в текстовую область в месте расположения курсора.

Я хочу изменить этот рабочий код, чтобы пользователь мог ввести URL-адрес с текстом заголовка в два поля ввода формы, создать полную гипертекстовую ссылку из ввода и вставить полученный HTML-код для тега привязки в текстовое поле как полная ссылка в позиции курсора, как и при нажатии кнопки вставки URL в редакторе wysiwig.

Как бы я изменил код ниже для достижения этой цели?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Test Page</title>

<script type="text/javascript">
window.onload = function()
{
        btn = document.getElementById("btnInsertText");
        myText = document.getElementById("myTextArea");
        text = document.getElementById("textToInsert");
        btn.onclick = function()
        {
            insertAtCursor(myText, text.value);
        }
}

function insertAtCursor(myField, myValue)
{ 
    //IE support 
    if (document.selection)
    { 
        myField.focus();
        sel = document.selection.createRange(); 
        sel.text = myValue; 
    }

    //Mozilla/Firefox/Netscape 7+ support 
    else if (myField.selectionStart || myField.selectionStart == '0')
    {  
        var startPos = myField.selectionStart;
        var endPos = myField.selectionEnd; 
        myField.value = myField.value.substring(0, startPos)+ myValue 
        + myField.value.substring(endPos, myField.value.length);
    }

    else
    { 
        myField.value += myValue; 
    } 
}       
</script>

</head>
<body>
Text To Insert: <input type="text" id="textToInsert" />

<input type="button" id="btnInsertText" value="Insert Text" /><br />
<br />
<textarea id="myTextArea" rows="6" cols="50">
Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.
</textarea>

</body>
</html>

1 Ответ

3 голосов
/ 15 июля 2010
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Test Page</title>

    <script type="text/javascript">
    window.onload = function()
    {
            btn = document.getElementById("btnInsertText");
            myText = document.getElementById("myTextArea");
            title = document.getElementById("insTitle");
            url = document.getElementById("insUrl");
            btn.onclick = function()
            {
                insertAtCursor(myText, title.value, url.value);
            }
    }

    function insertAtCursor(myField, title, url)
    { 
        //IE support 
        if (document.selection)
        { 
            myField.focus();
            sel = document.selection.createRange(); 
            sel.text = '<a href="'+url+'">'+title+'</a>'; 
        }

        //Mozilla/Firefox/Netscape 7+ support 
        else if (myField.selectionStart || myField.selectionStart == '0')
        {  
            var startPos = myField.selectionStart;
            var endPos = myField.selectionEnd; 
            myField.value = myField.value.substring(0, startPos)+ '<a href="'+url+'">'+title+'</a>' + myField.value.substring(endPos, myField.value.length);
        }

        else
        { 
            myField.value += myValue; 
        } 
    }       
    </script>

    </head>
    <body>
      title: <input type="text" id="insTitle" /><br />
      url: <input type="text" id="insUrl" />
      <input type="button" id="btnInsertText" value="Insert Text" /><br /><br />
      <textarea id="myTextArea" rows="6" cols="50">
        Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.
      </textarea>
    </body>
    </html>

However not tested in IE!
...