为了账号安全,请及时绑定邮箱和手机立即绑定

如何快速去除网页中的-moz-user-select:none 样式?

如何快速去除网页中的-moz-user-select:none 样式?

慕田峪9158850 2019-02-15 19:15:46
<table style="-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;-khtml-user-select: none;table-layout:fixed;" name="GRID2" border="0" cellpadding="0" cellspacing="0">如题,报表不让复制每次都是进到Developer Tools中把样式删除,怎么能点击收藏夹里的页签执行JS就清除这段样式?javascript:document.getElementsByTagName("table").removeAttribute("style")这样写不行…
查看完整描述

1 回答

?
萧十郎

TA贡献1815条经验 获得超13个赞

document.getElementsByTagName("table")返回的是一个元素集合(
HTMLCollection),所以要调用removeAttribute需要用到下标

document.getElementsByTagName("table")[0].removeAttribute('style')


查看完整回答
反对 回复 2019-02-20
  • 1 回答
  • 0 关注
  • 475 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信