JavaScript讓Textarea支援tab按鍵的方法,textareatab

來源:互聯網
上載者:User

JavaScript讓Textarea支援tab按鍵的方法,textareatab

本文執行個體講述了JavaScript讓Textarea支援tab按鍵的方法。分享給大家供大家參考。具體實現方法如下:

HTMLTextAreaElement.prototype.getCaretPosition = function () {//return the caret position of the textarea return this.selectionStart;};HTMLTextAreaElement.prototype.setCaretPosition = function (position) {//change the caret position of the textarea this.selectionStart = position; this.selectionEnd = position; this.focus();};HTMLTextAreaElement.prototype.hasSelection = function () {//if the textarea has selection then return true if (this.selectionStart == this.selectionEnd) {  return false; } else {  return true; }};HTMLTextAreaElement.prototype.getSelectedText = function () {//return the selection text return this.value.substring(this.selectionStart, this.selectionEnd);};HTMLTextAreaElement.prototype.setSelection = function (start, end) {//change the selection area of the textarea this.selectionStart = start; this.selectionEnd = end; this.focus();};var textarea = document.getElementsByTagName('textarea')[0]; textarea.onkeydown = function(event) { //support tab on textarea if (event.keyCode == 9) { //tab was pressed  var newCaretPosition;  newCaretPosition = textarea.getCaretPosition() + " ".length;  textarea.value = textarea.value.substring(0, textarea.getCaretPosition()) + " " + textarea.value.substring(textarea.getCaretPosition(), textarea.value.length);  textarea.setCaretPosition(newCaretPosition);  return false; } if(event.keyCode == 8){ //backspace  if (textarea.value.substring(textarea.getCaretPosition() - 4, textarea.getCaretPosition()) == " ") {  //it's a tab space   var newCaretPosition;   newCaretPosition = textarea.getCaretPosition() - 3;   textarea.value = textarea.value.substring(0, textarea.getCaretPosition() - 3) + textarea.value.substring(textarea.getCaretPosition(), textarea.value.length);   textarea.setCaretPosition(newCaretPosition);  } } if(event.keyCode == 37){ //left arrow  var newCaretPosition;  if (textarea.value.substring(textarea.getCaretPosition() - 4, textarea.getCaretPosition()) == " ") {  //it's a tab space   newCaretPosition = textarea.getCaretPosition() - 3;   textarea.setCaretPosition(newCaretPosition);  }  } if(event.keyCode == 39){ //right arrow  var newCaretPosition;  if (textarea.value.substring(textarea.getCaretPosition() + 4, textarea.getCaretPosition()) == " ") {  //it's a tab space   newCaretPosition = textarea.getCaretPosition() + 3;   textarea.setCaretPosition(newCaretPosition);  } } }

希望本文所述對大家的javascript程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.