js实例教程-Jquery同辈元素选中/未选中效果的实例代码

发布时间:2018-12-06 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了js实例教程-Jquery同辈元素选中/未选中效果的实例代码脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
小宝典致力于为广大程序猿(媛)提供高品质的代码服务,请大家多多光顾小站,小宝典在此谢过。

代码如下:


<!DOCTYPE htML PubLIC "-//W3C//DTD XHTML 1.0 TransITional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">&nbsp;
<html XMlns="https://www.w3.org/1999/xhtml"> 
<head runat="server"> 
    <title>jquery 同辈元素选中/未选中效果</title> 
    <script language="javascript" type="text/javascript" src="Scripts/jquery-1.4.4.min.js"></script> 
    <script type="text/javascript"> 
        function selectchange(tempid) { 
            VAR alink = $("#linktable").find("span"); 
            alink.each(function () { 
                $(this).removeClass("templinkactive").addClass("templink"); 
            }); 
            $("#alink" + tempid).removeClass("templink").addClass("templinkactive"); 
        } 
    </script> 
    <style type="text/css">  
    .templinkactive 
    { 
        padding:5px; 
        text-decoration:none; 
        background-color:  #2788DA; 
        color:#ffffff; 
    } 
    .templink 
    { 
        cursor:pointer; 
        padding:5px; 
        text-decoration:none; 
    }     
    </style> 
</head> 
<body> 
    <form id="form1" runat="server"> 
    <table width='100%' id="linktable"> 
        <tr> 
            <td> 
                <span id="alink001" class='templink'  onclick="javascript:selectchange('001');"> 
                    模板001(一行三列)</span> 
            </td> 
        </tr> 
        <tr> 
            <td> 
                <span id="alink002" class='templink'  onclick="javascript:selectchange('002');"> 
                    模板002(一行四列)</span> 
            </td> 
        </tr> 
        <tr> 
            <td> 
                <span id="alink003" class='templink'  onclick="javascript:selectchange('003');"> 
                    模板003(一行三列)</span> 
            </td> 
        </tr> 
        <tr> 
            <td> 
                <span id="alink004" class='templink'  onclick="javascript:selectchange('004');"> 
                    模板004(一行四列)</span> 
            </td> 
        </tr> 
        <tr> 
            <td> 
                <span id="alink005" class='templink'  onclick="javascript:selectchange('005');"> 
                    模板005(一行三列)</span> 
            </td> 
        </tr> 
    </table> 
    </form> 
</body> 
</html> 

代码如下:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="https://www.w3.org/1999/xhtml"> 
<head runat="server"> 
    <title>Jquery 同辈元素选中/未选中效果</title> 
    <script language="javascript" type="text/javascript" src="Scripts/jquery-1.4.4.min.js"></script> 
    <script type="text/javascript"> 
        function selectchange(tempid) { 
            var alink = $("#linktable").find("span"); 
            alink.each(function () { 
                $(this).removeClass("templinkactive").addClass("templink"); 
            }); 
            $("#alink" + tempid).removeClass("templink").addClass("templinkactive"); 
        } 
    </script> 
    <style type="text/css">  
    .templinkactive 
    { 
        padding:5px; 
        text-decoration:none; 
        background-color:  #2788DA; 
        color:#ffffff; 
    } 
    .templink 
    { 
        cursor:pointer; 
        padding:5px; 
        text-decoration:none; 
    }     
    </style> 
</head> 
<body> 
    <form id="form1" runat="server"> 
    <table width='100%' id="linktable"> 
        <tr> 
            <td> 
                <span id="alink001" class='templink'  onclick="javascript:selectchange('001');"> 
                    模板001(一行三列)</span> 
            </td> 
        </tr> 
        <tr> 
            <td> 
                <span id="alink002" class='templink'  onclick="javascript:selectchange('002');"> 
                    模板002(一行四列)</span> 
            </td> 
        </tr> 
        <tr> 
            <td> 
                <span id="alink003" class='templink'  onclick="javascript:selectchange('003');"> 
                    模板003(一行三列)</span> 
            </td> 
        </tr> 
        <tr> 
            <td> 
                <span id="alink004" class='templink'  onclick="javascript:selectchange('004');"> 
                    模板004(一行四列)</span> 
            </td> 
        </tr> 
        <tr> 
            <td> 
                <span id="alink005" class='templink'  onclick="javascript:selectchange('005');"> 
                    模板005(一行三列)</span> 
            </td> 
        </tr> 
    </table> 
    </form> 
</body> 
</html> 

觉得可用,就经常来吧!Javascript技巧 脚本宝典 欢迎评论哦! js技巧,巧夺天工,精雕玉琢。小宝典献丑了!

脚本宝典总结

以上是脚本宝典为你收集整理的js实例教程-Jquery同辈元素选中/未选中效果的实例代码全部内容,希望文章能够帮你解决js实例教程-Jquery同辈元素选中/未选中效果的实例代码所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。