Jump to content
  • 0

текст на место курсора


insy
 Share

Question

Народ, помогите плз!

Задача следующая, надо сделать так, чтобы текст вставлялся на место где в данный момент находится курсор, при нажатии на button как это реализовать, желательно как можно проще

Заранее спасибо!

Edited by insy
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Отличный ответ, я и так понимаю, что гугл спасет мир, но все же...

вот кстати... начал потихоньку вникать, написал, но код по непонятной причине не работает... посмотрите плз

function textReplace('message','qwerty')
{
var input = document.getElementById('message');
var selectionStart = input.selectionStart;
var selectionEnd = input.selectionEnd;
var inputValue = input.value;
var firstPart = inputValue.substring(0,selectionStart);
var middlePart = "qwerty";
var lastPart = inputValue.substring(selectionEnd,inputValue.length);
input.value = firstPart+middlePart+lastPart;
}

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