(selectors)
| 418 | |
| 419 | // 回到顶部(监听点击事件,鼠标右键点击网页两侧空白处) |
| 420 | function backToTop(selectors) { |
| 421 | if (!menu_value('menu_backToTop')) return |
| 422 | document.querySelector(selectors).oncontextmenu = function(event){ |
| 423 | if (event.target == this) { |
| 424 | event.preventDefault(); |
| 425 | window.scrollTo(0,0) |
| 426 | } |
| 427 | } |
| 428 | } |
| 429 | |
| 430 | |
| 431 | //获取元素是否在可视区域(完全可见) |
no test coverage detected