帮忙看一下代码哪里错了,审查元素是第12行smallPic attr("showPath",value[0]);那里,但是还是没找到错

<!doctypehtml><html><head><title>pictureshow</title><metacharset="utf-8"/><scripttype... <!doctype html>
<html>
<head>
<title>picture show</title>
<meta charset="utf-8"/>
<script type="text/javascript" src="../js/jquery.js"></script>
<script type="text/javascript">
var data={"images/showcA.png":["images/showA.png","showA","300px"],"images/showcB.png":

["images/showB.png","showB","300px"],"images/showcC.png":["images/showC.png","showC","300px"]};
$(function(){
$.each(data,function(key,value){
var smallPic=$("<img src='"+key+"' />");
smallPic attr("showPath",value[0]);
smallPic attr("showName",value[1]);
smallPic attr("showHeight",value[2]);

smallPic.mouseover(function(e){
$("#dataImage").attr("src",$(this).attr("showPath"));
$("#dataName").text($(this).attr("showName"));
$("#dataHeight").text($(this).attr("showHeight"));
$("#details").css("top",e.pageY).css("left",e.pageX).css("display","");

$("body").append(smallPic);
});
});
</script>
</head
<body>
<div style="display:none; position:absolute" id="details">
<img id="dataImage"/>
<p id="dataName"></p>
<p id="dataHeight"></p>
<p><input type="button" value="close"/></p>s
</div>
</body>
</html>
展开
 我来答
leo_howl
2015-12-01 · TA获得超过1465个赞
知道小有建树答主
回答量:290
采纳率:85%
帮助的人:96.6万
展开全部
  <!doctype html>
  <html>
  <head>
  <title>picture show</title>
  <meta charset="utf-8"/>
  <script type="text/javascript" src="A_stu/4/js/jquery-1.9.1.min.js"></script>
  <script type="text/javascript">
  </script>
  </head>
  <body>
  <div style="display:block; position:absolute; top:250px;" id="details">
  <img id="dataImage"/>
  <p id="dataName"></p>
  <p id="dataHeight"></p>
  <p><input type="button" value="close"/></p>
  </div>
  <script type="text/javascript">
  var data={"images/showcA.png":["images/showA.png","showA","300px"],"images/showcB.png":
  ["images/showB.png","showB","300px"],"images/showcC.png":["images/showC.png","showC","300px"]};
  $(function(){
  $.each(data,function(key,value){
  var smallPic = document.createElement("img");
  smallPic.setAttribute('src',key);
  smallPic.setAttribute("showPath",value[0]);
  smallPic.setAttribute("showName",value[1]);
  smallPic.setAttribute("showHeight",value[2]);
  $("body").append(smallPic);
  });
  $("img").on('mouseenter',function(e){
  $("#dataImage").attr("src",$(this).attr("showPath"));
  $("#dataName").text($(this).attr("showName"));
  $("#dataHeight").text($(this).attr("showHeight"));
  $("#details").css("top",e.pageY).css("left",e.pageX).css("display","");
  })
  });
  </script>
  </body>
  </html>
634569448wang
2015-11-23
知道答主
回答量:24
采纳率:100%
帮助的人:3.1万
展开全部

看着貌似,少一个大括号,你试试   

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式