怎么用jquery的方法点击4个按钮更换4张不同图片

 我来答
me人心如气候
2017-06-17 · TA获得超过322个赞
知道小有建树答主
回答量:319
采纳率:100%
帮助的人:66.7万
展开全部

方法一:

<!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>

方法有很多,主要看你如何布局吧

百度网友c251078
2015-07-16 · 超过64用户采纳过TA的回答
知道小有建树答主
回答量:91
采纳率:100%
帮助的人:86.9万
展开全部
<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";
});
});
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式