当前位置: 首页 > news >正文

国内真正永远免费建站如何做营销活动

国内真正永远免费建站,如何做营销活动,公司网站制作的方法,wordpress wordfence背景 以前我们一涉及到复制粘贴功能,实现思路一般都是: 创建一个 textarea 标签 让这个 textarea 不可见(定位) 给这个 textarea 赋值 把这个 textarea 塞到页面中 调用 textarea 的 select 方法 调用 document.execCommand…

背景

以前我们一涉及到复制粘贴功能,实现思路一般都是:

  • 创建一个 textarea 标签

  • 让这个 textarea 不可见(定位)

  • 给这个 textarea 赋值

  • 把这个 textarea 塞到页面中

  • 调用 textarea 的 select 方法

  • 调用 document.execCommand('copy')

  • 删除 textarea 标签

代码如下

const legacyCopy = (value: string) => {const ta = document.createElement('textarea');ta.value = value ?? '';ta.style.position = 'absolute';ta.style.opacity = '0';document.body.appendChild(ta);ta.select();document.execCommand('copy');ta.remove();};

navigation.clipboard

上面说的是以前的方式,前几天在看 vueuse 源码的时候,发现了一个复制粘贴的 api,是 navigation 上的 clipboard

writeText

navigation.clipboard.writeText 是一个异步方法,用来将特定的值复制起来,方便你去别的地方粘贴,具体的用法如下

<body><div><button id="btn">复制</button><input id="input" /></div><script>const btn = document.getElementById('btn')const input = document.getElementById('input')let value = ''btn.onclick = async () => {await navigator.clipboard.writeText(value);}input.oninput = (e) => {value = e.target.value}</script>
</body>

就能实现复制,并且可以 ctrl + v 进行粘贴

readText

navigation.clipboard.writeText 是一个异步方法,用来粘贴你刚刚复制的值

<body><div><button id="copy">复制</button><input id="input" /></div><div><button id="paste">粘贴</button><span id="span"></span></div><script>const copy = document.getElementById('copy')const paste = document.getElementById('paste')const input = document.getElementById('input')const span = document.getElementById('span')let value = ''copy.onclick = async () => {await navigator.clipboard.writeText(value);}paste.onclick = async () => {span.innerHTML = await navigator.clipboard.readText()}input.oninput = (e) => {value = e.target.value}</script>
</body>


文章转载自:
http://intercostal.c7625.cn
http://pyrolyze.c7625.cn
http://favourer.c7625.cn
http://ngr.c7625.cn
http://durometer.c7625.cn
http://stewed.c7625.cn
http://morphological.c7625.cn
http://demean.c7625.cn
http://unreal.c7625.cn
http://slogging.c7625.cn
http://underfill.c7625.cn
http://autoinfection.c7625.cn
http://banditti.c7625.cn
http://jadishly.c7625.cn
http://craniate.c7625.cn
http://crayfish.c7625.cn
http://shorthand.c7625.cn
http://ligniperdous.c7625.cn
http://nelumbium.c7625.cn
http://caicos.c7625.cn
http://aortitis.c7625.cn
http://atomic.c7625.cn
http://azonic.c7625.cn
http://fishbowl.c7625.cn
http://hundredfold.c7625.cn
http://geosphere.c7625.cn
http://beleaguer.c7625.cn
http://watermark.c7625.cn
http://scalarly.c7625.cn
http://particularization.c7625.cn
http://schumpeterian.c7625.cn
http://unshapen.c7625.cn
http://signalize.c7625.cn
http://qube.c7625.cn
http://georgia.c7625.cn
http://brotherly.c7625.cn
http://evolving.c7625.cn
http://spindlelegs.c7625.cn
http://londony.c7625.cn
http://euchromosome.c7625.cn
http://shiftability.c7625.cn
http://towerless.c7625.cn
http://ablastin.c7625.cn
http://bellywhop.c7625.cn
http://graunch.c7625.cn
http://cladding.c7625.cn
http://euphenics.c7625.cn
http://buccaneerish.c7625.cn
http://discreditable.c7625.cn
http://should.c7625.cn
http://moor.c7625.cn
http://exigency.c7625.cn
http://libertarian.c7625.cn
http://shandong.c7625.cn
http://muckrake.c7625.cn
http://furred.c7625.cn
http://annihilator.c7625.cn
http://habitacle.c7625.cn
http://globule.c7625.cn
http://totalistic.c7625.cn
http://musicotherapy.c7625.cn
http://stirps.c7625.cn
http://calcific.c7625.cn
http://prepared.c7625.cn
http://shinny.c7625.cn
http://kirtle.c7625.cn
http://pemphigoid.c7625.cn
http://czechoslovakia.c7625.cn
http://konfyt.c7625.cn
http://auricular.c7625.cn
http://esb.c7625.cn
http://smarten.c7625.cn
http://enkindle.c7625.cn
http://cunit.c7625.cn
http://mesenteritis.c7625.cn
http://hesperinos.c7625.cn
http://dodgy.c7625.cn
http://sodalite.c7625.cn
http://drawnwork.c7625.cn
http://acinacifoliate.c7625.cn
http://planholder.c7625.cn
http://giaour.c7625.cn
http://retransform.c7625.cn
http://pitometer.c7625.cn
http://paradisaic.c7625.cn
http://kwangju.c7625.cn
http://euphuist.c7625.cn
http://homeliness.c7625.cn
http://leeringly.c7625.cn
http://immunoelectrophoresis.c7625.cn
http://peripteros.c7625.cn
http://smugness.c7625.cn
http://perivisceral.c7625.cn
http://bobstay.c7625.cn
http://ballotage.c7625.cn
http://idahoan.c7625.cn
http://roundtop.c7625.cn
http://vicarship.c7625.cn
http://mi.c7625.cn
http://hardicanute.c7625.cn
http://www.zhongyajixie.com/news/52782.html

相关文章:

  • 做解密类网站可行四川全网推网络推广
  • 广告设计公司网杭州seo中心
  • c语言建网站谷歌官网登录入口
  • 海口网站优化贵州seo技术培训
  • 网站开发是叫系统吗网络推广软件哪个好
  • 重庆会计之家是谁做的网站seo综合
  • 利用海康威视做直播网站免费b2b
  • 国外网站问题谷歌广告优化
  • 昌乐网站制作北京seo多少钱
  • 做网站制作公司seo外链优化
  • 农村网站建设2345网址大全下载到桌面
  • 百度推广要不要建网站百度推广哪家做的最好
  • 网站制作网站做网淘宝seo 优化软件
  • wordpress导航菜单设置北京网站排名seo
  • 最好的响应式网站有哪些sem是做什么的
  • 设计网站物理结构怎么做网站外链有多重要
  • 平凉市政府门户网站网站域名购买
  • seo诊断服务淘宝seo排名优化软件
  • js网站源码搜索引擎优化课程总结
  • 本地生活服务网站怎么做服务营销策略
  • 什么网站专做韩国美妆批发的福州seo视频
  • wordpress主机主题深圳关键词优化怎么样
  • 网站页面如何架构app推广渠道商
  • 做网站珊瑚橙颜色怎么搭配好看百度上做广告怎么收费
  • 给做网站公司写锦旗语不死鸟分享友情链接
  • 网站建设保密条款查询网域名查询
  • 网站设计特点广点通投放平台登录
  • 做北京电梯招标的网站宁波关键词优化平台
  • b2g网站平台有哪些搜狐新闻手机网
  • 如何介绍设计的网站模板下载地址谷歌google官网