在网上找了好久发现都不符合要求就自己摸索写了一个,用到了linq.js这个linq to js 扩展,不然用纯JS遍历json查询要死人啊

demo:http://123.207.28.46:8086/

效果图:

代码直接拷贝就可以运行:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<style>
/*sku选择样式*/
li {
list-style: none;
margin-right: 10px;
} li label {
cursor: pointer;
} li {
float: left;
line-height: 30px;
} .clear {
clear: both;
}
.AttributeValue {
border: 1px solid #808080;
padding: 5px 10px;
} .choices {
border-color: #e01313
} .disabled {
border: 1px dashed #b1abab;
background-color: #f1f1f1;
} .disabled label {
cursor: not-allowed;
}
</style>
<script src="http://neue.cc/linq.min.js"></script>
<script> var Combination1 = { Id: 1, ProductId: 21, Attributes: ",9,13,19,21,", StockQuantity: 10, OverriddenPrice: 99 };
var Combination2 = { Id: 2, ProductId: 21, Attributes: ",9,14,20,23,", StockQuantity: 10, OverriddenPrice: 199 };
var Combination3 = { Id: 3, ProductId: 21, Attributes: ",10,16,19,25,", StockQuantity: 10, OverriddenPrice: 299 };
var Combination4 = { Id: 4, ProductId: 21, Attributes: ",10,17,20,24,", StockQuantity: 10, OverriddenPrice: 299 };
var Combination5 = { Id: 5, ProductId: 21, Attributes: ",11,17,20,24,", StockQuantity: 10, OverriddenPrice: 299 };
var Combination6 = { Id: 6, ProductId: 21, Attributes: ",12,14,19,22,", StockQuantity: 10, OverriddenPrice: 299 };
//list:来自数据查询出来的商品组合属性json数据
var list = [];
list.push(Combination1);
list.push(Combination2);
list.push(Combination3);
list.push(Combination4);
list.push(Combination5);
list.push(Combination6);
//SKU_TYPET:来自数据库中商品属性json数据
var SKU_TYPET = [{ AttributeId: 7, Attribute: "颜色", AttributeValues: [{ AttributeValueId: 9, AttributeValue: "金色" }, { AttributeValueId: 10, AttributeValue: "黑色" }, { AttributeValueId: 11, AttributeValue: "银色" }, { AttributeValueId: 12, AttributeValue: "红色" }] }, { AttributeId: 8, Attribute: "版本", AttributeValues: [{ AttributeValueId: 13, AttributeValue: "公开版" }, { AttributeValueId: 14, AttributeValue: "原厂延保版" }, { AttributeValueId: 15, AttributeValue: "双网通版" }, { AttributeValueId: 16, AttributeValue: "无线充套装" }, { AttributeValueId: 17, AttributeValue: "AirPods套装" }, { AttributeValueId: 18, AttributeValue: "分期用版" }] }, { AttributeId: 9, Attribute: "内存", AttributeValues: [{ AttributeValueId: 19, AttributeValue: "64G" }, { AttributeValueId: 20, AttributeValue: "256G" }] }, { AttributeId: 10, Attribute: "套装", AttributeValues: [{ AttributeValueId: 21, AttributeValue: "优惠套装1" }, { AttributeValueId: 22, AttributeValue: "优惠套装2" }, { AttributeValueId: 23, AttributeValue: "优惠套装3" }, { AttributeValueId: 24, AttributeValue: "优惠套装4" }, { AttributeValueId: 25, AttributeValue: "优惠套装5" }] }];
$(function () {
function ishas(AttributeValueIds) {
var newlist = list.concat();
var newAttributeValueIds = AttributeValueIds;
for (var i = 0; i < newAttributeValueIds.length; i++) {
newlist = Enumerable.From(newlist).Where(function (x) {
return x.Attributes.indexOf(newAttributeValueIds[i]) > -1;
}).ToArray();
}
if (newlist.length > 0) {
return true;
} else {
return false;
}
}
init(SKU_TYPET);
//init:绑定商品属性数据
function init(SKU_TYPET) {
var SKU_TYPE = "";
$.each(SKU_TYPET, function (index, item) {
SKU_TYPE += '<ul class="SKU_TYPE"> <li sku-type-name="' + item.Attribute + '">' + item.Attribute + ':</li></ul>';
SKU_TYPE += "<ul>";
$.each(item.AttributeValues, function (i, childitem) {
var AttributeValueIdsArry = [];
AttributeValueIdsArry.push("," + childitem.AttributeValueId + ",");
if (!ishas(AttributeValueIdsArry)) {
SKU_TYPE += '<li class="AttributeValue disabled" data-AttributeId="' + item.AttributeId + '" data-AttributeValueId="' + childitem.AttributeValueId + '"><label>' + childitem.AttributeValue + '</label></li>';
} else {
SKU_TYPE += '<li class="AttributeValue available" data-AttributeId="' + item.AttributeId + '" data-AttributeValueId="' + childitem.AttributeValueId + '"><label>' + childitem.AttributeValue + '</label></li>';
} });
SKU_TYPE += "</ul>";
SKU_TYPE += '<div class="clear"></div>';
}); $("#show").html(SKU_TYPE);
}
//Attribute:已选择的商品属性集合[{ AttributeId: 7, AttributeValueId: 9 }]
var Attribute = [];
//取消已选择属性点击事件
$("body").on("click", ".choices", function (event) {
$(this).removeClass("choices");
$(this).addClass("available");
var AttributeId = $(this).attr("data-AttributeId");
var AttributeValueId = $(this).attr("data-AttributeValueId");
//从Attribute删除已选择属性
var itemIndex = 0;
$.each(Attribute, function (index, item) {
if (item.AttributeId == parseInt(AttributeId)) {
itemIndex = index;
}
});
Attribute.splice(itemIndex, 1);
//重新绑定
$.each(SKU_TYPET, function (index, item) {
$.each(item.AttributeValues, function (i, childitem) {
var newAttributeValueIds = Enumerable.From(Attribute).Select(function (x) { return x.AttributeValueId }).ToArray();
var AttributeValueIdsArry = [];
$.each(Attribute, function (i, it) {
AttributeValueIdsArry.push("," + it.AttributeValueId + ",");
});
AttributeValueIdsArry.push("," + childitem.AttributeValueId + ",");
if (!ishas(AttributeValueIdsArry)) {
$("[data-AttributeValueId='" + childitem.AttributeValueId + "']").addClass("disabled");
$("[data-AttributeValueId='" + childitem.AttributeValueId + "']").removeClass("available"); } else {
$("[data-AttributeValueId='" + childitem.AttributeValueId + "']").removeClass("disabled");
if (!$("[data-AttributeValueId='" + childitem.AttributeValueId + "']").hasClass("choices")) {
$("[data-AttributeValueId='" + childitem.AttributeValueId + "']").addClass("available");
}
}
}); }); });
//选择属性点击事件
$("body").on("click", ".available", function () {
var AttributeId = $(this).attr("data-AttributeId");
var AttributeValueId = $(this).attr("data-AttributeValueId");
//先判断Attribute是否存在该属性,
if (Enumerable.From(Attribute).ToLookup("$.AttributeId").Contains(parseInt(AttributeId))) {
$.each(Attribute, function (index, item) {
//存在更新其值
if (item.AttributeId == parseInt(AttributeId)) {
item.AttributeValueId = parseInt(AttributeValueId);
}
});
}
//不存在则添加
else {
Attribute.push({ AttributeId: parseInt(AttributeId), AttributeValueId: parseInt(AttributeValueId) });
}
//循环每一项属性值并查询
$.each(SKU_TYPET, function (index, item) {
$.each(item.AttributeValues, function (i, childitem) {
var newAttributeValueIds = Enumerable.From(Attribute).Select(function (x) { return x.AttributeValueId }).ToArray();
var AttributeValueIdsArry = [];
$.each(Attribute, function (i, it) {
AttributeValueIdsArry.push("," + it.AttributeValueId + ",");
});
AttributeValueIdsArry.push("," + childitem.AttributeValueId + ",");
if (!ishas(AttributeValueIdsArry)) {
$("[data-AttributeValueId='" + childitem.AttributeValueId + "']").addClass("disabled");
$("[data-AttributeValueId='" + childitem.AttributeValueId + "']").removeClass("available"); } else {
$("[data-AttributeValueId='" + childitem.AttributeValueId + "']").removeClass("disabled");
if (!$("[data-AttributeValueId='" + childitem.AttributeValueId + "']").hasClass("choices")) {
$("[data-AttributeValueId='" + childitem.AttributeValueId + "']").addClass("available");
} }
}); });
$(this).removeClass("available");
$(this).addClass("choices"); });
$("#Button1").click(function () {
if (Attribute.length != SKU_TYPET.length) {
$("#show").css("border", "2px solid #ff0000");
alert("请选择您要的商品信息");
} else {
$("#show").css("border", "0");
alert("你已选择:"+JSON.stringify(Attribute));
}
})
});
</script>
</head>
<body>
<div id="show" style="width:100%;">
</div>
<input id="Button1" type="button" value="购买" style="margin-left:98px;margin-top:20px" /> </body>
</html>

仿京东淘宝商品详情页属性选择js效果的更多相关文章

  1. vue实现淘宝商品详情页属性选择功能

    方法一是自己想出来的,方法二来自忘记哪里看到的了 不知道是不是你要的效果: 方法一:利用input[type="radio"] css代码: input { display: no ...

  2. 仿淘宝商品详情页上拉弹出新ViewController

    新项目就要开始做了,里面有购物那块,就试着先把淘宝商品详情页的效果做了一下. 1.需求 1.第一次上拉时,A视图拉到一定距离将视图B从底部弹出,A视图也向上 2.显示B视图时下拉时,有刷新效果,之后将 ...

  3. iOS app url scheme跳转到淘宝商品详情页 唤醒app

    最近涉及的一个业务,在app内的一个广告,点击打开webView,加载的是一个淘宝商品详情页,效果是打开该webView自动跳转至淘宝对应的页面,同时在自己的app仍然加载页面,点击评论等也同样能跳转 ...

  4. android仿京东、淘宝商品详情页上拉查看详情

    话不多说,直接上干货,基本就是一个scrollview中嵌套两个scrollview或者webview;关键点事处理好子scrollview和父scrollview的触摸.滑动事件已达到想要的效果.大 ...

  5. 第十二篇、OC_仿淘宝商品详情页的翻页

    // // GFBProductViewController.m // elmsc // // Created by MAC on 2016/11/26. // Copyright © 2016年 G ...

  6. Vue实现仿淘宝商品详情属性选择的功能

    Vue实现仿淘宝商品详情属性选择的功能 先看下效果图:(同个属性内部单选,属性与属性之间可以多选) 主要实现过程: 所使用到的数据类型是(一个大数组里面嵌套了另一个数组)具体格式如下:   attrA ...

  7. Android 仿电商app商品详情页按钮浮动效果

    1.效果图如下: 这效果用户体验还是很酷炫,今天我们就来讲解如何实现这个效果. 2.分析 为了方便理解,作图分析 如图所示,整个页面分为四个部分: 1.悬浮内容,floatView 2.顶部内容,he ...

  8. 淘宝商品html--网页结构

    淘宝商品html--网页结构 本篇爬虫紧接上一篇关于 泸州老窖 的爬虫随笔: import re import json def get_space_end(level): return ' ' * ...

  9. Android之仿京东淘宝的自动无限轮播控件

    在App的开发中,很多的时候都需要实现类似京东淘宝一样的自动无限轮播的广告栏,所以就自己写了一个,下面是我自定义控件的思路和过程. 一.自定义控件属性 新建自定义控件SliderLayout继承于Re ...

随机推荐

  1. PHP------析构方法

    析 构 方 法 封装,有一个叫构造函数 和构造函数对应的还有一种方法叫做析构. class ren    //一个类 是 人类 { public $mingzi ://成员变量 punction__d ...

  2. springmvc小结(上)

    1.springmvc的整体结构以及流程 ①.前端控制器:只需要在web.xml文件中配置即可 作用:接受请求,处理响应结果,转发器,中央处理器 ②.处理器映射器:根据请求的url找到相应的Handl ...

  3. 理解JavaScript数据类型

    JavaScript有5种基本数据类型: 数值(number):整数和小数(比如1和3.14) 字符串(string):字符组成的文本(比如"Hello World") 布尔值(b ...

  4. Hibernate之openSession与getCurrentSession的区别

    openSession 与 getCurrentSession的区别(1)openSession 每一次获得的是一个全新的session对象,而getCurrentSession获得的是与当前线程绑定 ...

  5. Vue中better-scroll插件的使用

    实现原理:父容器固定高度,并设置属性overflow: hidden,使得子元素高度超出容器后能被隐藏.better-scroll作用在父容器上.1.npm安装better-scroll插件.npm ...

  6. linux nginx 配置php

    linux nginx 配置php   下载php源码 解压 configure ./configure --prefix=/usr/local/php --enable-fpm --with-mcr ...

  7. 从零开始学习CocoaPods安装和使用

    从零开始学习CocoaPods安装和使用   转载: Code4App原创:http://code4app.com/article/cocoapods-install-usage http://m.i ...

  8. 商业化IM 客户端接口设计分析

    对于刚接触IM(即时通讯)开发,通过阅读成熟的商业代码能够对即时通讯软件大体上有个认识,比如消息发送,消息接受,消息监听,群聊,单聊,聊天室.我这边直接拿[Gobelieve IM]源码来做剖析.IM ...

  9. Window系统Oracle 安装

    一:安装Oracle 数据库软件 1.先去官网下载所需文件:http://www.oracle.com/technetwork/database/enterprise-edition/download ...

  10. iOS之动态计算文字的高度

    + (CGSize)boundingALLRectWithSize:(NSString *)txt Font:(UIFont *)font Size:(CGSize)size { NSMutableA ...