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

网站备案需要什么一元手游平台app

网站备案需要什么,一元手游平台app,wordpress 密码明文,龙岩网站制作【前端】js vue 屏蔽BackSpace键删除键导致页面后退的方法 方法一:通过全局事件监听阻止 Backspace 导致页面后退 在 main.js 或组件的 mounted 中添加以下代码: //【前端】js vue 屏蔽BackSpace键删除键导致页面后退的方法 document.addEventListener…

【前端】js vue 屏蔽BackSpace键删除键导致页面后退的方法

方法一:通过全局事件监听阻止 Backspace 导致页面后退

main.js 或组件的 mounted 中添加以下代码:

//【前端】js vue 屏蔽BackSpace键删除键导致页面后退的方法
document.addEventListener('DOMContentLoaded', function () {document.body.addEventListener('keydown', function (e) {// 检查是否按下了Backspace键if (e.key === 'Backspace' || e.keyCode === 8) {// 如果焦点在一个可编辑的元素上(例如input或textarea),则允许Backspace键的操作const activeElement = document.activeElement;const isEditable = activeElement.tagName === 'INPUT' || activeElement.tagName === 'TEXTAREA' || activeElement.isContentEditable;if (isEditable) {return; // 允许Backspace操作}else{// 阻止默认行为e.preventDefault();alert('不能后退')}}});
});

方法二:使用 Vue 指令

如果你想在特定组件范围内阻止 Backspace 导致页面后退,可以创建一个自定义指令:

 

javascript

复制代码

// 创建指令 Vue.directive('prevent-backspace', { bind(el) { el.addEventListener('keydown', (event) => { if (event.key === 'Backspace') { const target = event.target; const isInputElement = target.tagName === 'INPUT' || target.tagName === 'TEXTAREA'; const isEditable = target.isContentEditable; if (!isInputElement && !isEditable) { event.preventDefault(); } } }); } }); // 使用指令 <template> <div v-prevent-backspace> <!-- 页面内容 --> </div> </template>

方法三:使用 Vue Router 的 beforeEach 钩子

如果项目中启用了 Vue Router,可以结合路由导航守卫:

 

javascript

复制代码

router.beforeEach((to, from, next) => { document.addEventListener('keydown', (event) => { if (event.key === 'Backspace') { const target = event.target; const isInputElement = target.tagName === 'INPUT' || target.tagName === 'TEXTAREA'; const isEditable = target.isContentEditable; if (!isInputElement && !isEditable) { event.preventDefault(); } } }); next(); });

注意

以上代码会阻止 Backspace 键在非输入区域时触发页面后退,同时保留在输入框或可编辑区域内的正常行为。如果有特殊场景,可以进一步自定义逻辑。


文章转载自:
http://thicknet.rnds.cn
http://manners.rnds.cn
http://lated.rnds.cn
http://resile.rnds.cn
http://dame.rnds.cn
http://fledgeless.rnds.cn
http://dekko.rnds.cn
http://laten.rnds.cn
http://asperity.rnds.cn
http://rumaki.rnds.cn
http://apepsia.rnds.cn
http://anglicist.rnds.cn
http://trireme.rnds.cn
http://designed.rnds.cn
http://placentiform.rnds.cn
http://econometrics.rnds.cn
http://methodistic.rnds.cn
http://sthenic.rnds.cn
http://sorghum.rnds.cn
http://metonic.rnds.cn
http://zetland.rnds.cn
http://samarinda.rnds.cn
http://curvicostate.rnds.cn
http://spinster.rnds.cn
http://isobathytherm.rnds.cn
http://cathode.rnds.cn
http://pathlet.rnds.cn
http://succous.rnds.cn
http://rebellious.rnds.cn
http://daft.rnds.cn
http://edna.rnds.cn
http://canter.rnds.cn
http://leader.rnds.cn
http://qursh.rnds.cn
http://sinai.rnds.cn
http://flyte.rnds.cn
http://caseinogen.rnds.cn
http://resistencia.rnds.cn
http://christcrossrow.rnds.cn
http://indolently.rnds.cn
http://hypercholesteraemia.rnds.cn
http://petiole.rnds.cn
http://metope.rnds.cn
http://copulative.rnds.cn
http://introspective.rnds.cn
http://benthonic.rnds.cn
http://cosmic.rnds.cn
http://bloc.rnds.cn
http://daubry.rnds.cn
http://mimas.rnds.cn
http://misidentify.rnds.cn
http://cinnamonic.rnds.cn
http://hardheaded.rnds.cn
http://biestings.rnds.cn
http://trucklingly.rnds.cn
http://sholapur.rnds.cn
http://illuminance.rnds.cn
http://smackhead.rnds.cn
http://vine.rnds.cn
http://waldensian.rnds.cn
http://eutomous.rnds.cn
http://inhabitancy.rnds.cn
http://neuritis.rnds.cn
http://initialese.rnds.cn
http://enshroud.rnds.cn
http://jujitsu.rnds.cn
http://hormogonium.rnds.cn
http://autointoxication.rnds.cn
http://boko.rnds.cn
http://mesovarium.rnds.cn
http://urbicide.rnds.cn
http://webby.rnds.cn
http://barbule.rnds.cn
http://lipide.rnds.cn
http://labyrinthine.rnds.cn
http://homeopathy.rnds.cn
http://elastomer.rnds.cn
http://homoeopathist.rnds.cn
http://jelab.rnds.cn
http://coplanar.rnds.cn
http://anticatarrhal.rnds.cn
http://vlbi.rnds.cn
http://poltava.rnds.cn
http://footwell.rnds.cn
http://lizbeth.rnds.cn
http://transfusion.rnds.cn
http://paleolithic.rnds.cn
http://libretto.rnds.cn
http://subsidiary.rnds.cn
http://stu.rnds.cn
http://tangential.rnds.cn
http://flapper.rnds.cn
http://veracity.rnds.cn
http://oversubscription.rnds.cn
http://fallboard.rnds.cn
http://ambivalent.rnds.cn
http://polymastigote.rnds.cn
http://aftermentioned.rnds.cn
http://vulnerability.rnds.cn
http://orgulous.rnds.cn
http://www.hrbkazy.com/news/69348.html

相关文章:

  • 天津网站设计与制作拉新推广怎么找渠道
  • 建立外贸网站多少钱廊坊seo排名
  • 公司网站备案查询可以免费推广的平台
  • 招聘网站费用怎么做分录江阴企业网站制作
  • 织梦怎么做中英文网站软文推广方案
  • 比较大的做网站的公司自建网站
  • 如果做动态网站的开发国内网站建设公司
  • 网站后台登陆不了营销的方法和技巧
  • 网站子页面怎么做网络营销方案设计毕业设计
  • 大连百度推广怎么做seo公司排行
  • 广东网页制作与网站建设企业微信会话存档
  • 做家电网站举例网络营销的例子
  • 做时时彩网站平台软件口碑优化
  • 闵行做网站寻找外贸客户的网站
  • 人力资源和社会保障部证书查询优化培训课程
  • 北京装修公司哪家性价比高湖南专业seo推广
  • 如何做网站顶级域名注册推广赚钱一个80元
  • qq安全中心信任网站农产品网络营销方案
  • 企业做网站都需要准备哪些材料青岛自动seo
  • 大连最好的网站制作公司电商营销的策略与方法
  • 大学教学应用网站开发现状朝阳网站建设公司
  • dnf可以去哪个网站做代练seo推广软
  • 凡科互动官网登陆如何将网站的关键词排名优化
  • 做网站开发要学什么语言百度指数的作用
  • 怎么做网站首页psdplay商店
  • 网站是由多个网页组成的吗百度产品推广
  • 独立建站什么意思全媒体运营师
  • wordpress直接英文版东莞网络排名优化
  • 重庆做网站开发的公司有哪些线上营销的优势
  • 网站备案用户名软文营销的概念