当前位置:编程学习 > JAVA >>

Jquery 仿淘宝京东多条件筛选 可自行结合ajax加载

[html]
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="JquerySort.aspx.cs" Inherits="demo_JquerySort" %> 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head runat="server">     
    <title>Jquery分类</title> 
    <script src="../Scripts/jquery-1.4.4.min.js" type="text/javascript"></script> 
    <script type="text/javascript"> 
        $(function () { 
            //品牌 
            var alink01 = $("#linktype01").find("span"); 
            alink01.click(function () { 
                alink01.each(function () { 
                    $(this).removeClass("templinkactive").addClass("templink"); 
                }); 
                $(this).removeClass("templink").addClass("templinkactive"); 
                $("#Brand").val($(this).attr("tag")); 
            }) 
 
            //价格 
            var alink02 = $("#linktype02").find("span"); 
            alink02.click(function () { 
                alink02.each(function () { 
                    $(this).removeClass("templinkactive").addClass("templink"); 
                }); 
                $(this).removeClass("templink").addClass("templinkactive"); 
                $("#Price").val($(this).attr("tag")); 
            }) 
 
            //尺寸 
            var alink03 = $("#linktype03").find("span"); 
            alink03.click(function () { 
                alink03.each(function () { 
                    $(this).removeClass("templinkactive").addClass("templink"); 
                }); 
                $(this).removeClass("templink").addClass("templinkactive"); 
                $("#Size").val($(this).attr("tag")); 
                SetPara(); 
            }) 
        }); 
 
 
        function SetPara() { 
            var a = $("#Brand").val(); 
            var b = $("#Price").val(); 
            var c = $("#Size").val(); 
            alert("1.aspx?a=" + a + "&b=" + b + "&c=" + c); 
        }; 
    </script>  
    <style type="text/css">    
        .templinkactive   
        {   
            padding:5px;   
            text-decoration:none;   
            background-color:  #2788DA;   
            color:#ffffff;   
        }   
        .templink   
        {   
            cursor:pointer;   
            padding:5px;   
            text-decoration:none;   
        }    
        table tr{ height:35px;}    
    </style> 
</head> 
<body> 
    <form id="form1" runat="server"> 
    <div> 
        <table> 
            <tr id="linktype01"> 
                <td style="width:100px"> 
                    <b>笔记本品牌</b> 
                </td> 
                <td> 
                    <span class='templinkactive' tag="0">不限</span> 
     &

补充:web前端 , JavaScript ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,