From d97b035049722bb43a56540608eadd825bdb4153 Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 18 Nov 2020 10:09:17 +0800 Subject: [PATCH] Update admin.js --- public/static/admin.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/public/static/admin.js b/public/static/admin.js index afd6a7b7e..a3955ff2c 100644 --- a/public/static/admin.js +++ b/public/static/admin.js @@ -599,6 +599,24 @@ $(function () { }); }; + /*! 文本框插入内容 */ + $.fn.insertAtCursor = function (value) { + return this.each(function () { + if (document.selection) { + this.focus(); + var selection = document.selection.createRange(); + (selection.text = value), selection.select(); + } else if (this.selectionStart || this.selectionStart === 0) { + var startPos = this.selectionStart, afterPos = this.selectionEnd, scrollTop = this.scrollTop; + this.value = this.value.substring(0, startPos) + value + this.value.substring(afterPos, this.value.length); + if (scrollTop > 0) this.scrollTop = scrollTop; + this.focus(); + this.selectionEnd = startPos + value.length; + this.selectionStart = startPos + value.length; + } else (this.value += value), this.focus(); + }); + } + /*! 注册 data-load 事件行为 */ $body.on('click', '[data-load]', function () { var url = this.dataset.load, tips = this.dataset.tips, time = this.dataset.time;