摘要: 好久没晒代码了。今天心情不错,搬出来晒晒太阳。 var getCursorEndPosition = function (textarea) { textarea.focus(); // 首先当然要设为选中了 if (textarea.setSelectionRange) { // W3C return textarea.selectionEnd; } else if (document.selection) { // IE var i ... 阅读全文