为什么 onclick 事件没有在我的锚点上触发,其中包含图像?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 CSS 将图像设置为 a 元素的背景图像。
如果您希望 a 元素的行为更像跨度,则可以使用
display: inline-block
。Set the image as the background image of the a element using CSS.
You can use
display: inline-block
if you want the a element to behave more like a span.