码迷,mamicode.com
首页 > Web开发 > 详细

HTML 商品展示(js)

时间:2014-11-06 19:06:35      阅读:570      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   java   for   sp   div   on   cti   

利用Object.indexOf(“.”)返回.的下标

在用Object.substr(star,lengh)返回指定长度字符串。star是开始位置,length是截取长度;

————————————————————————————————————————————————————————

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>商品展示</title>
<style type="text/css">
#id1{
width:248px;
height:248px;
}
img{
display:block;
float:left;
margin-left:0px;
width:40px;
height:40px;
padding:5px;
border:1px solid #CCC;
}

</style>

</head>

<body>
<div style="width:300px; margin:5% auto">
<img id="id1" src="imange/show1_big.jpg"><br>

<img src="imange/show1.jpg">
<img src="imange/show2.jpg">
<img src="imange/show3.jpg">
<img src="imange/show4.jpg">
<img src="imange/show5.jpg">
<div>
</body>
<script type="text/javascript">
var imgg=document.getElementsByTagName("img");
for(var i=1;i<imgg.length;i++){
imgg[i].onmouseover=function(){
var a=this.src;
var i=a.indexOf(".");
var x=a.substr(0,i);
document.getElementById("id1").src=x+"_big.jpg";

imgg[i].onmouseout=function(){
document.getElementById("id1").src="imange/show1_big.jpg";
this.style.border="1px solid #CCC";
}
}
</script>
</html>

HTML 商品展示(js)

标签:style   io   ar   java   for   sp   div   on   cti   

原文地址:http://www.cnblogs.com/xiaosen992608/p/4079320.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!