html图片的onclick事件无反应?
<!DOCTYPEhtml>现在在初学html<html><head><script>alert("start");functiontest(){alert("test"...
<!DOCTYPE html>现在在初学html<html><head> <script> alert("start"); function test() { alert("test"); } </script></head><link rel="stylesheet" type="text/css" href="hexagon.css"><body><!--这是一个正六边形--><div class="hexagon_father"> <div class="hexagon_child"> <div class="hexagon_childchild"> <img src="forest.png" style="cursor:pointer" οnclick="alert('ok')"> </div> </div></div></body></html>如上是html源代码,现在在初学html,想做一个图片触发的功能现在都出问题,求助大神如何处理,图片是嵌在一个六边形里面的,鼠标指向图片时可以变成手型
展开
3个回答
展开全部
本身就能实现的,style="cursor:pointer"这就是实现你的需求。只是需要点击图片弹出ok的话做以下调整:onclick="javascript:alert('ok')"。需要加上javascript:
<div class="hexagon_father">
<div class="hexagon_child">
<div class="hexagon_childchild">
<img src="forest.png" style="cursor:pointer" onclick="javascript:alert('ok')">
</div>
</div>
</div>
<div class="hexagon_father">
<div class="hexagon_child">
<div class="hexagon_childchild">
<img src="forest.png" style="cursor:pointer" onclick="javascript:alert('ok')">
</div>
</div>
</div>
展开全部
删掉你 onclick 周围的字符,重新用键盘输入一遍。
有可能是你复制的代码里有特殊不可见字符了。
有可能是你复制的代码里有特殊不可见字符了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询