为什么 onclick 事件没有在我的锚点上触发,其中包含图像?

发布于 2024-12-09 01:46:44 字数 354 浏览 0 评论 0原文

我正在使用 Zeroclipboard api 复制到剪贴板。我用 HTML 锚点制作了一个简单的测试页面,如下所示:

<a href="#" id="copy" >copy</a>

通过单击复制链接,文本将复制到剪贴板,所有 js 事件都会触发并正确记录到控制台中,但是当我将上面的示例更改为具有锚点内的图像以获得更好的用户体验:

<a href="#" id="copy" ><img src="copy.gif" alt="copy"/></a>

...代码不再工作,并且不会触发任何事件。

I'm working on copy to clipboard using the zeroclipboard api,. I made a simple test page with an HTML anchor as follows:

<a href="#" id="copy" >copy</a>

By clicking on copy link, the text is copied to clipboard, all js events are firing and are being logged properly into the console, but when I change the example above to have an image inside the anchor for better user experience:

<a href="#" id="copy" ><img src="copy.gif" alt="copy"/></a>

...the code does no longer work and no events are fired.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静谧幽蓝 2024-12-16 01:46:44

使用 CSS 将图像设置为 a 元素的背景图像。

#copy {
    background-image: url('copy.jpg')
    display: block
    width: XXXpx
    height: YYYpx
}

如果您希望 a 元素的行为更像跨度,则可以使用 display: inline-block

Set the image as the background image of the a element using CSS.

#copy {
    background-image: url('copy.jpg')
    display: block
    width: XXXpx
    height: YYYpx
}

You can use display: inline-block if you want the a element to behave more like a span.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文