怎么用jquery的方法点击4个按钮更换4张不同图片
展开全部
方法一:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="jquery-1.10.1.min.js"></script>
<script>
$(function () {
$('button').click(function () {
$(this).siblings('span').css('display','none');
$(this).next().css('display','inline-block');
})
})
</script>
<style>
span {
display: none;
}
</style>
</head>
<body>
<div>
<button type="button">按钮一</button>
<span>图片一</span>
<button type="button">按钮二</button>
<span>图片二</span>
<button type="button">按钮三</button>
<span>图片三</span>
<button type="button">按钮四</button>
<span>图片四</span>
</div>
</body>
</html>
方法二:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="jquery-1.10.1.min.js"></script>
<script>
$(function () {
$('button').each(function (index) {
$(this).attr('index',index);
$('span').eq(index).attr('index',index);
$(this).click(function () {
$('span').hide();
if ($(this).attr('index') === $('span').eq(index).attr('index')) {
$('span').eq(index).css('display','inline-block');
}
})
})
})
</script>
<style>
span {
display: none;
}
</style>
</head>
<body>
<div>
<button type="button">按钮一</button>
<button type="button">按钮二</button>
<button type="button">按钮三</button>
<button type="button">按钮四</button>
</div>
<div>
<span>图片一</span>
<span>图片二</span>
<span>图片三</span>
<span>图片四</span>
</div>
</body>
</html>
方法有很多,主要看你如何布局吧
展开全部
<button id="b1">按钮1</button>
<button id="b2">按钮2</button>
<button id="b3">按钮3</button>
<button id="b4">按钮4</button>
<img id="imgSrc" src="img1"></img>
<script>
$(function(){
$("#b1").click(function(){
$("#imgSrc").src="img1";
});
$("#b2").click(function(){
$("#imgSrc").src="img2";
});
$("#b3").click(function(){
$("#imgSrc").src="img3";
});
$("#b4").click(function(){
$("#imgSrc").src="img4";
});
});
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询