()
| 567 | |
| 568 | // 输入密码后回车确认 |
| 569 | function enterToPass() { |
| 570 | document.getElementById('pwd').onkeydown = function(e){ |
| 571 | if (e.key === 'Enter') { |
| 572 | document.getElementById('sub').click(); |
| 573 | } |
| 574 | }; |
| 575 | } |
| 576 | |
| 577 | |
| 578 | // 快捷返回上级(右键点击 网页右侧/下方 空白处) |
no outgoing calls
no test coverage detected