网页:复制到剪贴板(自定义..)
我知道将文本复制到剪贴板的最好、最简单的方法是使用 Flash,它既跨浏览器又简单,这对我来说很好!我遇到过这个很棒的插件,名为 clippy 但问题是你必须将图像或对象嵌入到页面。
我想要一个链接,单击该链接即可进行复制。有什么想法吗? :-)
谢谢!
I know the best and easiest way to copy text to a clipboard that is both cross browser and simple is to use Flash, which is fine with me! I have come across this awesome plugin called clippy but the problem is you have to embed the image or object onto the page.
I wanted to have a link that when clicked would do the copying. Any ideas? :-)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 zeroclipboard 库,您可以使用任何块级元素作为剪贴板按钮。这是可行的,因为 zeroclipboard 将不可见的 Flash 影片浮动在指定的 HTML 块级元素之上。
如果您想单击链接来复制到剪贴板,请尝试以下操作:
以及稍后:
请注意,此处可以省略
a
标记,因为剪贴板按钮浮动在包含的 div 上,而不是链接本身。Using the zeroclipboard library, you can use any blocklevel element as your clipboard button. This works because zeroclipboard floats an invisible flash movie above the specified HTML blocklevel element.
If you want to have a link clicked as to copy to clipboard, try something like the following:
And later:
Note that the
a
tag could be omitted here because the clipboard button is floating over the containing div, not the link itself.