仿京东淘宝商品详情页属性选择js效果
在网上找了好久发现都不符合要求就自己摸索写了一个,用到了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效果的更多相关文章
- vue实现淘宝商品详情页属性选择功能
方法一是自己想出来的,方法二来自忘记哪里看到的了 不知道是不是你要的效果: 方法一:利用input[type="radio"] css代码: input { display: no ...
- 仿淘宝商品详情页上拉弹出新ViewController
新项目就要开始做了,里面有购物那块,就试着先把淘宝商品详情页的效果做了一下. 1.需求 1.第一次上拉时,A视图拉到一定距离将视图B从底部弹出,A视图也向上 2.显示B视图时下拉时,有刷新效果,之后将 ...
- iOS app url scheme跳转到淘宝商品详情页 唤醒app
最近涉及的一个业务,在app内的一个广告,点击打开webView,加载的是一个淘宝商品详情页,效果是打开该webView自动跳转至淘宝对应的页面,同时在自己的app仍然加载页面,点击评论等也同样能跳转 ...
- android仿京东、淘宝商品详情页上拉查看详情
话不多说,直接上干货,基本就是一个scrollview中嵌套两个scrollview或者webview;关键点事处理好子scrollview和父scrollview的触摸.滑动事件已达到想要的效果.大 ...
- 第十二篇、OC_仿淘宝商品详情页的翻页
// // GFBProductViewController.m // elmsc // // Created by MAC on 2016/11/26. // Copyright © 2016年 G ...
- Vue实现仿淘宝商品详情属性选择的功能
Vue实现仿淘宝商品详情属性选择的功能 先看下效果图:(同个属性内部单选,属性与属性之间可以多选) 主要实现过程: 所使用到的数据类型是(一个大数组里面嵌套了另一个数组)具体格式如下: attrA ...
- Android 仿电商app商品详情页按钮浮动效果
1.效果图如下: 这效果用户体验还是很酷炫,今天我们就来讲解如何实现这个效果. 2.分析 为了方便理解,作图分析 如图所示,整个页面分为四个部分: 1.悬浮内容,floatView 2.顶部内容,he ...
- 淘宝商品html--网页结构
淘宝商品html--网页结构 本篇爬虫紧接上一篇关于 泸州老窖 的爬虫随笔: import re import json def get_space_end(level): return ' ' * ...
- Android之仿京东淘宝的自动无限轮播控件
在App的开发中,很多的时候都需要实现类似京东淘宝一样的自动无限轮播的广告栏,所以就自己写了一个,下面是我自定义控件的思路和过程. 一.自定义控件属性 新建自定义控件SliderLayout继承于Re ...
随机推荐
- 商品数量编辑按钮3D效果动画
.move-enter-active transition:all 0.4s linear transform:rotate(180deg).move-leave-active transition: ...
- Spring(十八)之页面重定向
首先说明,该示例的maven依赖可以复用Spring(十七)之表单处理还有 还有就是对应的web.xml和servlet.xml文件都能复用,不必再次修改. 说到重定向不得不提到一个转发.这里概述一下 ...
- springmvc和easyui使用ajax前台后台互传数据,假删除提示警告问题。
前台 //删除 多/单条数据 function del(cid){ var id=''; if(cid=='-1'){ if(getSelections().length > 0){ id=ge ...
- Java 循环结构
Java 循环结构 - for, while 及 do...while 顺序结构的程序语句只能被执行一次.如果您想要同样的操作执行多次,,就需要使用循环结构. Java中有三种主要的循环结构: whi ...
- Google Fonts导致网页加载速度慢
最近在做商城项目时候发现在加载一个html页面反应非常慢,查看发现是Google Font导致的网页加载速度缓慢,删除掉该样式会发现很多内容出错. 上网百度发现问题在于: 谷歌香港(google.co ...
- Eclipse 中打开选中文件/文件夹所在目录
习惯了使用VS中的 ”通过右键打开选中文件/文件夹在电脑中的目录”功能后, 当切换到Eclipse环境后,发现居然找不到这个功能, 虽可以通过右键文件属性,看到文件路径,复制路径然后在资源管理器中打开 ...
- Linux -- 用户组篇
Linux -- 用户与用户组 1.Linux 系统中有三种角色:所有者(用户),用户组与其他人,一张图可以说明用户与用户组的关系. 如图,某公司相当于一个用户组,该用户组下有A,B两个用户,用户拥有 ...
- RAC Cache Fusion Background Processes
Acdante--每日三省吾身-- . 什么是缓存融合? .缓存融合工作原理? .缓存融合关键进程以及作用?
- 初窥UIKit Dynamics
原文来自这里. iOS7中可以方便的给物体添加动态物理特性,主要使用到UIDynamicAnimator,UIDynamicBehavior以及实现了UIDynamicItem协议的对象.在iOS7中 ...
- js实现点击按钮可实现编辑
<script type="text/javascript">//修改密码//抓取到的数据 function edit() { document.getElementB ...