mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update admin.js
This commit is contained in:
parent
67898cfc52
commit
64d5957499
@ -977,11 +977,16 @@ $(function () {
|
|||||||
|
|
||||||
/*! 注册 data-copy 事件行为 */
|
/*! 注册 data-copy 事件行为 */
|
||||||
onEvent('click', '[data-copy]', function () {
|
onEvent('click', '[data-copy]', function () {
|
||||||
(function (content, $textarea) {
|
var content = this.dataset.copy || this.innerText;
|
||||||
$body.append($textarea.val(content)), $textarea.select();
|
if (window.clipboardData) {
|
||||||
document.execCommand('Copy') ? $.msg.tips('已复制到剪贴板!') : $.msg.tips('请使用鼠标操作复制!');
|
window.clipboardData.clearData('text');
|
||||||
$textarea.remove();
|
window.clipboardData.setData('text', content);
|
||||||
})(this.dataset.copy, $('<textarea readonly style="position:fixed;top:-500px"></textarea>'));
|
return $.msg.tips('已复制到剪贴板!');
|
||||||
|
}
|
||||||
|
var $textarea = $('<textarea readonly style="position:fixed;top:-500px"></textarea>');
|
||||||
|
$textarea.appendTo($body).val(content).select();
|
||||||
|
$.msg.tips(document.execCommand('Copy') ? '已复制到剪贴板!' : '请使用鼠标操作复制!');
|
||||||
|
$textarea.remove();
|
||||||
});
|
});
|
||||||
|
|
||||||
/*! 异步任务状态监听与展示 */
|
/*! 异步任务状态监听与展示 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user