当前位置: 首页> 文旅> 旅游 > 辽宁省建设工程信息网官网开标_成人设计培训班多少钱_岳阳seo公司_便民信息微信平台推广

辽宁省建设工程信息网官网开标_成人设计培训班多少钱_岳阳seo公司_便民信息微信平台推广

时间:2025/8/10 23:47:05来源:https://blog.csdn.net/y1059477028/article/details/142379435 浏览次数:1次
辽宁省建设工程信息网官网开标_成人设计培训班多少钱_岳阳seo公司_便民信息微信平台推广

HTML

<template><div class="report_generate_wrap" id="parentElement"><div ref="textContainer" @mouseup="mouseUp" v-html="textContent"></div><div v-if="showCopyPopup" :style="copyPopupStyle" class="copy-popup"><p>已选中文本,点击复制:</p><button @click="copyText" style="margin-right: 10px">复制</button><button @click="hideCopyPopup">取消</button></div></div>
</template>

 JS

data() {return {textContent: "这是一段示例文本,你可以尝试选中它。",showCopyPopup: false,selectedText: "",lastMousePosition: { x: 0, y: 0 },previousSelectedText: "",};},computed: {copyPopupStyle() {return {position: "absolute",left: `${this.lastMousePosition.x + 20}px`, // 假设弹窗距离鼠标右侧20pxtop: `${this.lastMousePosition.y}px`,transform: "translateY(-50%)", // 垂直居中};},
},mounted() {window.addEventListener("click", this.handleGlobalClick);
},beforeDestroy() {window.removeEventListener("click", this.handleGlobalClick);
},methods: {handleGlobalClick(event) {// 如果点击事件不是发生在textContainer元素内,则隐藏复制弹窗if (!this.$refs.textContainer.contains(event.target)) {this.showCopyPopup = false;}},mouseUp(event) {console.log("鼠标松开");this.updateMousePosition(event);const selection = window.getSelection();if (selection.rangeCount > 0) {const range = selection.getRangeAt(0);this.selectedText = range.toString().trim();// 检查当前选中的文本是否与之前选中的文本不同if (this.selectedText !== this.previousSelectedText) {if (this.selectedText !== "") {this.showCopyPopup = true;} else {this.showCopyPopup = false;}// 更新之前选中的文本this.previousSelectedText = this.selectedText;} else {// 如果相同,则不显示复制弹出框this.showCopyPopup = false;}} else {this.showCopyPopup = false;this.selectedText = "";this.previousSelectedText = ""; // 清除之前选中的文本}},updateMousePosition(event) {const parentElement = document.getElementById("parentElement");this.lastMousePosition = {x: event.clientX - parentElement.getBoundingClientRect().left,//鼠标相对于父元素的位置y: event.clientY,};},copyText() {const textarea = document.createElement("textarea");textarea.value = this.selectedText;document.body.appendChild(textarea);textarea.select();document.execCommand("copy");document.body.removeChild(textarea);this.hideCopyPopup();},hideCopyPopup() {this.showCopyPopup = false;},
}

 CSS

<style scoped lang="less">
.copy-popup {background-color: white;border: 1px solid #ccc;padding: 10px;z-index: 1000;
}
</style>

关键字:辽宁省建设工程信息网官网开标_成人设计培训班多少钱_岳阳seo公司_便民信息微信平台推广

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: