div onclick 位于锚标记内
我有这样的代码:
<a href="somewhere.html">
<img src="blabla">
<div class="wrap">
<div id="id1" onclick="window.location = 'somepage1.html';"></div>
<div id="id2" onclick="window.location = 'somepage2.html';"></div>
<div>
</a>
问题是 div 的 onclick 不起作用。当我点击 div 时,我会转到某个地方.html。
I have a code like this:
<a href="somewhere.html">
<img src="blabla">
<div class="wrap">
<div id="id1" onclick="window.location = 'somepage1.html';"></div>
<div id="id2" onclick="window.location = 'somepage2.html';"></div>
<div>
</a>
The problem is that the div's onclick is not working. When I click on div's I go to somewhere.html.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您在链接内包装 div 的 html 结构错误(除非使用 html5):
当您单击时,您将始终转到顶部
somewhere.html
的链接,并且内部 div 不会执行您想要执行的操作。您应该修改您的 html 结构。You have wrong html structure wrapping divs inside link (unless using html5):
When you click, you will always go to link at top
somewhere.html
and inner divs won't do what you want to do. You should modify your html structure.