1
InAndOut 132 天前
不可以的,类似 怎么样在 windows 的状态下进入 BIOS
|
2
qhd1988 132 天前
实现不了,出于安全考虑,浏览器不让你这么干
|
3
bojackhorseman 132 天前
弹窗 edge://settings/sidebar 提示:请复制到浏览器地址栏并回车
|
4
liuing OP @bojackhorseman 目前就是这么实现的
|
5
gorvey 132 天前
不行的,有些网站检测缩放,也只会提示你按 ctrl + -。没办法设置的
|
6
brader 132 天前
楼主你试试我这个方式,你能不能接受!主要参考实现原理就好,引导流程和提示,你可以自己优化一下!
``` <!DOCTYPE html> <html> <head> <title>Copy to Clipboard Example</title> </head> <body> <input type="text" id="myInput" value="edge://settings/sidebar"> <button onclick="copyToClipboard()">Copy Text</button> <script> function copyToClipboard() { var copyText = document.getElementById("myInput"); copyText.select(); document.execCommand("copy"); alert("请按键盘 Ctrl + Shift + L 快速打开设置"); } </script> </body> </html> ``` @InAndOut #1 @qhd1988 #2 @bojackhorseman #3 @gorvey #5 |
7
brader 132 天前
alert 只是个形式哈,你不需要的话,只需要一进页面 js 改动剪切板即可,然后在显目位置提示按什么快捷键,这个快捷键会自动打开你复制的 url 的
|