var ARRAY_WEEK_CN = ["\u5468\u65e5", "\u5468\u4e00", "\u5468\u4e8c", "\u5468\u4e09", "\u5468\u56db", "\u5468\u4e94", "\u5468\u516d"];
var HTML5_DEFAULT_IMG_300x300 = "/images/html5/default_300x300.gif";
var HTML5_DEFAULT_IMG_220x220 = "/images/html5/default_220x220.gif";
window.m_prefix = "m.360buy.com_";
window.m_cityId = "cityId";
window.m_userCity = "userCity";
window.m_categoryId = "categoryId";
window.m_userCityDetail = "userCityDetail";
window.m_longitudeLatitude = "longitudeLatitude";
window.m_timeout = 1000 * 20;
window.m_waitText = "努力加载中...";
function isNotBlank(a) {
if (a == undefined || a == null || a == "null" || a == "undefined") {
return false
}
return true
}
function isDigital(b) {
var a = /^\d$/;
return a.test(b)
}
function textLimit(d, c, b) {
if (!d) {
return false
}
var a = d.trim().length;
if (a < c || a > b) {
return false
}
return true
}
function testEmail(b) {
var a = /^[a-zA-Z0-9]+@[a-zA-Z0-9]+.[a-z][a-z.]{2,8}$/;
return a.test(b)
}
function testGeolocation() {
if ( !! navigator.geolocation) {
testGeolocation = function() {
return true
};
return testGeolocation()
}
testGeolocation = function() {
return false
};
return testGeolocation()
}
function testStorage() {
return testSessionStorage() || testLocalStorage()
}
function testSessionStorage() {
if ( !! window.sessionStorage) {
testSessionStorage = function() {
return true
}
} else {
testSessionStorage = function() {
return false
}
}
return testSessionStorage()
}
function testLocalStorage() {
if ( !! window.localStorage) {
testLocalStorage = function() {
return true
}
} else {
testLocalStorage = function() {
return false
}
}
return testLocalStorage()
}
function json(v) {
return eval("(" + v + ")")
}
function testPhone(b) {
var a = /^1\d{10}$/;
return a.test(b)
}
function createSpinner() {
var a = {
lines: 12,
length: 6,
width: 4,
radius: 10,
color: "#333",
speed: 1,
trail: 60,
shadow: false,
hwaccel: false
};
return new Spinner(a)
}
var addCart = function(h, a) {
var d = $("#resourceType").val();
var c = $("#resourceValue").val();
if (d == null || d == "" || typeof(d) == undefined) {
d = "unknown"
}
if (c == null || c == "" || typeof(c) == undefined) {
c = "unknown"
}
if (!testLocalStorage()) {
if ( !! a) {
location.href = "/cart/add.action?sid=" + a + "&wareId=" + h + "&resourceType=" + d + "&resourceValue=" + c
} else {
location.href = "/cart/add.action?wareId=" + h + "&resourceType=" + d + "&resourceValue=" + c
}
return
}
var e = window.localStorage.getItem("cartItem");
if (e != null) {
var g = JSON.parse(e);
if (g.length >= 10) {
return
}
for (var b = 0; b <= g.length; b++) {
if (g[b] != null && g[b].id == h) {
g[b].num += 1;
break
} else {
if (b == g.length) {
var f = new Object();
f.id = h;
f.num = 1;
f.resourceType = d;
f.resourceValue = c;
g[g.length] = f;
break
}
}
}
} else {
g = new Array();
var f = new Object();
f.id = h;
f.num = 1;
f.resourceType = d;
f.resourceValue = c;
g[0] = f
}
window.localStorage.setItem("cartItem", JSON.stringify(g));
updateToolBar()
};
var getCart = function() {
if (!testLocalStorage()) {
return
}
return window.localStorage.getItem("cartItem")
};
var clearCart = function() {
if (!testLocalStorage()) {
return
}
window.localStorage.removeItem("cartItem");
updateToolBar()
};
var delCart = function(g, b, c, a) {
if (!testLocalStorage()) {
if ( !! b) {
location.href = "/cart/remove.action?sid=" + b + "&wareId=" + g + "&num=" + c
} else {
location.href = "/cart/remove.action?wareId=" + g + "&num=" + c
}
return
}
var e = window.localStorage.getItem("cartItem");
if (e != null) {
var f = JSON.parse(e);
for (var d = 0; d < f.length; d++) {
if (f[d].id == g) {
f.splice(d, 1);
break
}
}
window.localStorage.setItem("cartItem", JSON.stringify(f))
}
if (a) {
syncCart(b, true)
}
updateToolBar()
};
var updateCart = function(f, b, a) {
if (!testLocalStorage()) {
if ( !! a) {
location.href = "/cart/modify.action?sid=" + a + "&wareId=" + f + "&num=" + b
} else {
location.href = "/cart/modify.action?wareId=" + f + "&num=" + b
}
return
}
var d = window.localStorage.getItem("cartItem");
if (d != null) {
var e = JSON.parse(d);
for (var c = 0; c < e.length; c++) {
if (e[c].id == f) {
e[c].num = Number(b);
break
}
}
window.localStorage.setItem("cartItem", JSON.stringify(e))
}
updateToolBar()
};
var updateToolBar = function(b) {
if (!testLocalStorage()) {
return
}
var d = 0;
var c = window.localStorage.getItem("cartItem");
if (c != null) {
var e = JSON.parse(c);
if (e != null) {
for (var a = 0; a < e.length; a++) {
d += Number(e[a].num)
}
}
}
if (d != 0) {
$("#html5_cart_img").attr("src", "/images/html5/cartm.png");
$("#html5_cart_img").attr("height", "22");
$("#html5_cart_img").attr("width", "26")
} else {
$("#html5_cart_img").attr("src", "/images/html5/cart.png");
$("#html5_cart_img").attr("height", "21");
$("#html5_cart_img").attr("width", "22")
}
};
var syncCart = function(sid, jump) {
var sourceType = $("#resourceType").val();
var sourceValue = $("#resourceValue").val();
if (sourceType == null || sourceType == "" || typeof(sourceType) == undefined) {
sourceType = "unknown"
}
if (sourceValue == null || sourceValue == "" || typeof(sourceValue) == undefined) {
sourceValue = "unknown"
}
if (!testLocalStorage()) {
if ( !! sid) {
location.href = "/cart/cart.action?sid=" + sid + "&resourceType=" + sourceType + "&resourceValue=" + sourceValue
} else {
location.href = "/cart/cart.action?resourceType=" + sourceType + "&resourceValue=" + sourceValue
}
return
}
var paraJson = getCart();
if (paraJson == null) {
paraJson = ""
}
jQuery.get("/cart/update.json?sid=" + sid, {
updatejson: paraJson
}, function(data) {
if (sid == "") {
sid = data.sid
}
cartdata = eval("(" + data.cartDetail + ")");
refreshLocalCart(cartdata, sid);
if (jump || getCart() == null) {
if ( !! sid) {
location.href = "/cart/cart.action?sid=" + sid
} else {
location.href = "/cart/cart.action?"
}
} else {
var oriPrice = cartdata.price - cartdata.discount;
var realPrice = oriPrice - cartdata.rePrice;
$("#cart_oriPrice").text(oriPrice.toFixed(2));
$("#cart_rePrice").text(cartdata.rePrice.toFixed(2));
$("#cart_realPrice").text(realPrice.toFixed(2));
$("#cart_totalnum").text(cartdata.num);
if (cartdata.message != null && cartdata.message != "") {
$("#pay_tip").text(cartdata.message);
$("#pay_tip_div").show()
} else {
$("#pay_tip_div").hide()
}
}
})
};
var refreshLocalCart = function(d, a) {
if (typeof(d) != "undefined" && d != null) {
if (d.skus != null && d.skus.length > 0) {
for (var c = 0; c < d.skus.length; c++) {
updateCart(d.skus[c].Id, d.skus[c].Num, a)
}
}
if (d.suits != null && d.suits.length > 0) {
for (var b = 0; b < d.suits.length; b++) {
if (d.suits[b].Skus != null && d.suits[b].Skus.length > 0) {
for (var c = 0; c < d.suits[b].Skus.length; c++) {
updateCart(d.suits[b].Skus[c].Id, d.suits[b].Skus[c].Num, a)
}
}
}
}
if (d.gifts != null && d.gifts.length > 0) {
for (var c = 0; c < d.gifts.length; c++) {
updateCart(d.gifts[c].MainSku.Id, d.gifts[c].MainSku.Num, a)
}
}
}
};
function urlEncode(c, a, d) {
var b = "";
var e = c.split(".");
b = b + e[0];
if (d && d.length) {
d.forEach(function(f) {
b = b + "-";
if (f && f != -1 && f != "-1") {
b = b + f
} else {
b = b + "0"
}
})
}
b = b + "." + e[1];
if ( !! a) {
if (/\?/.test(b)) {
b = b + "&sid=" + a
} else {
b = b + "?sid=" + a
}
}
return b
}
function hideWait(b, a) {
a.stop();
b.hide();
b.next().show();
$("header").show();
$("footer").show()
}
function showWait(b, a) {
b.show();
b.next().hide();
$("header").hide();
$("footer").hide();
a.spin(b[0])
}
function createPicMove(a, b, c) {
var g = function(j) {
return "string" == typeof j ? document.getElementById(j) : j
};
var d = function(j, l) {
for (var k in l) {
j[k] = l[k]
}
return j
};
var f = function(j) {
return j.currentStyle || document.defaultView.getComputedStyle(j, null)
};
var i = function(l, j) {
var k = Array.prototype.slice.call(arguments).slice(2);
return function() {
return j.apply(l, k.concat(Array.prototype.slice.call(arguments)))
}
};
var e = {
Quart: {
easeOut: function(k, j, m, l) {
return -m * ((k = k / l - 1) * k * k * k - 1) + j
}
},
Back: {
easeOut: function(k, j, n, m, l) {
if (l == undefined) {
l = 1.70158
}
return n * ((k = k / m - 1) * k * ((l + 1) * k + l) + 1) + j
}
},
Bounce: {
easeOut: function(k, j, m, l) {
if ((k /= l) < (1 / 2.75)) {
return m * (7.5625 * k * k) + j
} else {
if (k < (2 / 2.75)) {
return m * (7.5625 * (k -= (1.5 / 2.75)) * k + 0.75) + j
} else {
if (k < (2.5 / 2.75)) {
return m * (7.5625 * (k -= (2.25 / 2.75)) * k + 0.9375) + j
} else {
return m * (7.5625 * (k -= (2.625 / 2.75)) * k + 0.984375) + j
}
}
}
}
}
};
var h = function(k, n, m, l) {
this._slider = g(n);
this._container = g(k);
this._timer = null;
this._count = Math.abs(m);
this._target = 0;
this._t = this._b = this._c = 0;
this.Index = 0;
this.SetOptions(l);
this.Auto = !! this.options.Auto;
this.Duration = Math.abs(this.options.Duration);
this.Time = Math.abs(this.options.Time);
this.Pause = Math.abs(this.options.Pause);
this.Tween = this.options.Tween;
this.onStart = this.options.onStart;
this.onFinish = this.options.onFinish;
var j = !! this.options.Vertical;
this._css = j ? "top" : "left";
var o = f(this._container).position;
o == "relative" || o == "absolute" || (this._container.style.position = "relative");
this._container.style.overflow = "hidden";
this._slider.style.position = "absolute";
this.Change = this.options.Change ? this.options.Change : this._slider[j ? "offsetHeight" : "offsetWidth"] / this._count
};
h.prototype = {
SetOptions: function(j) {
this.options = {
Vertical: true,
Auto: true,
Change: 0,
Duration: 50,
Time: 10,
Pause: 4000,
onStart: function() {},
onFinish: function() {},
Tween: e.Quart.easeOut
};
d(this.options, j || {})
},
Run: function(j) {
j == undefined && (j = this.Index);
j < 0 && (j = this._count - 1) || j >= this._count && (j = 0);
this._target = -Math.abs(this.Change) * (this.Index = j);
this._t = 0;
this._b = parseInt(f(this._slider)[this.options.Vertical ? "top" : "left"]);
this._c = this._target - this._b;
this.onStart();
this.Move()
},
Move: function() {
clearTimeout(this._timer);
if (this._c && this._t < this.Duration) {
this.MoveTo(Math.round(this.Tween(this._t++, this._b, this._c, this.Duration)));
this._timer = setTimeout(i(this, this.Move), this.Time)
} else {
this.MoveTo(this._target);
this.Auto && (this._timer = setTimeout(i(this, this.Next), this.Pause))
}
},
MoveTo: function(j) {
this._slider.style[this._css] = j + "px"
},
Next: function() {
this.Run(++this.Index)
},
Previous: function() {
this.Run(--this.Index)
},
Stop: function() {
clearTimeout(this._timer);
this.MoveTo(this._target)
}
};
return new h(a, b, c, {
Vertical: false
})
}
function bind(c, a) {
var b = Array.prototype.slice.call(arguments).slice(2);
return function() {
return a.apply(c, b.concat(Array.prototype.slice.call(arguments)))
}
}
function userLocation(c, b) {
function a(d, g) {
var f = "获取失败更新";
$("#" + c).html(m_waitText);
var e = window.setTimeout(function() {
$("#" + c).html(f)
}, window.m_timeout);
if (testGeolocation()) {
navigator.geolocation.getCurrentPosition(function(h) {
var j = h.coords.latitude;
var i = h.coords.longitude;
jQuery.get("/tuan/location.json", {
latitude: j,
longitude: i
}, bind(this, function(m, n) {
if (n.status) {
window.clearTimeout(e);
if (n.cityId) {
var k = n.location.city + n.location.subCity;
var l = n.location.fullNames;
if (testStorage()) {
setCityId(n.cityId);
setLongitudeLatitude(j + "," + i);
setUserCity(k);
setUserCityDetail(l)
}
l = l + "更新";
k = k + "更新";
if ( !! m) {
$("#" + c).html(k)
} else {
$("#" + c).html(l)
}
} else {
$("#" + c).html(f)
}
}
}, d), "json")
}, function() {
$("#" + c).html(f);
window.clearTimeout(e)
}, {
timeout: 5000
})
}
g.preventDefault()
}
if ( !! b) {
$("#" + b).click(bind(this, a, b))
} else {
$("#" + c).click(bind(this, a, b))
}
}
function registerUnloadEvent(b, a) {
document.body.onunload = function() {
hideWait(b, a)
}
}
function writeTipVal(a) {
if (a != "") {
$("#keyword").val(a);
$("#shelper").html("");
$("#searchForm").submit()
}
}
function closeTip() {
$("#shelper").html("");
$("#shelper").hide()
}
var old_keyword = "";
var old_keyword2 = "";
function searchTipContent() {
var a = $("#keyword").val().trim();
if (a == "") {
old_keyword = "";
$("#shelper").html("");
$("#shelper").hide()
} else {
if (a == old_keyword || a == old_keyword2) {} else {
$("#shelper").show();
$("#keyword").removeAttr("style");
a = $("#keyword").val().trim();
old_keyword = a;
jQuery.get("/ware/searchTip.action?", {
keyword: a
}, function(b) {
if (b != null) {
$("#shelper").html(b)
} else {
$("#shelper").html("")
}
})
}
}
setTimeout("searchTipContent()", 500)
}
$(function() {
$(".search input").attr("autocomplete", "off");
if (jQuery("#keyword").length > 0) {
old_keyword = $("#keyword").val().trim();
searchTipContent();
old_keyword2 = old_keyword;
$("#keyword").focus(function() {
if (old_keyword2 == $("#keyword").val().trim()) {
$("#keyword").val("")
}
});
$("#keyword").blur(function() {
if ($("#keyword").val().trim() == "") {
$("#keyword").val(old_keyword2);
$("#keyword").attr("style", "color:#999999;")
}
})
}
if ($("#btnJdkey")) {
$("#btnJdkey").click(function() {
if ($("#jdkey").css("display") == "none") {
$("#jdkey").show()
} else {
$("#jdkey").hide()
}
})
}
var a = window.location.href.replace(/(^http:\/\/)|(\/*$)/g, "");
if (a.indexOf("/") < 0 || (a.split("/").length <= 2 && a.indexOf("/index") >= 0)) {
$("#jdkey .new-tbl-cell").eq(0).children().addClass("on")
}
if (a.indexOf("/category/all.html") > -1) {
$("#jdkey .new-tbl-cell").eq(1).children().addClass("on")
}
if (a.indexOf("/cart/cart.action") > -1) {
$("#jdkey .new-tbl-cell").eq(2).children().addClass("on")
}
if (a.indexOf("/user/") > -1) {
$("#jdkey .new-tbl-cell").eq(3).children().addClass("on")
}
});
function getCityId() {
var a;
if (testLocalStorage()) {
a = window.localStorage.getItem(m_prefix + m_cityId)
} else {
if (testSessionStorage()) {
a = window.sessionStorage.getItem(m_prefix + m_cityId)
}
}
return a || 0
}
function getUserCity() {
var a;
if (testLocalStorage()) {
a = window.localStorage.getItem(m_prefix + m_userCity)
} else {
if (testSessionStorage()) {
a = window.sessionStorage.getItem(m_prefix + m_userCity)
}
}
return a || null
}
function getUserCityDetail() {
var a;
if (testLocalStorage()) {
a = window.localStorage.getItem(m_prefix + m_userCityDetail)
} else {
if (testSessionStorage()) {
a = window.sessionStorage.getItem(m_prefix + m_userCityDetail)
}
}
return a || null
}
function getCategoryId() {
var a;
if (testLocalStorage()) {
a = window.localStorage.getItem(m_prefix + m_categoryId)
} else {
if (testSessionStorage) {
a = window.sessionStorage.getItem(m_prefix + m_categoryId)
}
}
return a || 0
}
function getLongitudeLatitude() {
var a;
if (testSessionStorage()) {
a = window.sessionStorage.getItem(m_prefix + m_longitudeLatitude)
}
return a || null
}
function setCityId(a) {
if ( !! a) {
if (testLocalStorage()) {
window.localStorage.setItem(m_prefix + m_cityId, a)
} else {
if (testSessionStorage()) {
window.sessionStorage.setItem(m_prefix + m_cityId, a)
}
}
}
}
function setUserCity(a) {
if ( !! a) {
if (testLocalStorage()) {
window.localStorage.setItem(m_prefix + m_userCity, a)
} else {
if (testSessionStorage()) {
window.sessionStorage.setItem(m_prefix + m_userCity, a)
}
}
}
}
function setUserCityDetail(a) {
if ( !! a) {
if (testLocalStorage()) {
window.localStorage.setItem(m_prefix + m_userCityDetail, a)
} else {
if (testSessionStorage()) {
window.sessionStorage.setItem(m_prefix + m_userCityDetail, a)
}
}
}
}
function setCategoryId(a) {
if ( !! a) {
if (testLocalStorage()) {
window.localStorage.setItem(m_prefix + m_categoryId, a)
} else {
if (testSessionStorage()) {
window.sessionStorage.setItem(m_prefix + m_categoryId, a)
}
}
}
}
function setLongitudeLatitude(a) {
if ( !! a) {
if (testSessionStorage()) {
window.sessionStorage.setItem(m_prefix + m_longitudeLatitude, a)
}
}
}
function goTuanIndex(a) {
var g, c;
try {
g = getCityId();
c = getCategoryId()
} catch (d) {} !! g || (g = 0); !! c || (c = 0);
var f = [g, c, 0, 0, 1];
var b = urlEncode("/tuan/index.html", a, f);
return b || "#"
}
function priceTransform(a) {
try {
return parseFloat(a).toFixed(1)
} catch (b) {
return a
}
return a
}
function getDiscount(d, c) {
var b = (d - c).toString();
var a = b.indexOf(".");
if (a > 0) {
b = b.substring(0, b.indexOf(".") + 2)
}
return b
}
document.ontouchend = function() {
$("#hideInput").remove();
$("#con_more").append('')
};
function strlen(d) {
var a = 0;
for (var b = 0; b < d.length; b++) {
var e = d.charCodeAt(b);
if ((e >= 1 && e <= 126) || (65376 <= e && e <= 65439)) {
a++
} else {
a += 2
}
}
return a
}
function changePage(b, c) {
var a = document.paging; !! a.startSpinner && a.startSpinner();
jQuery.get(b, {
page: c
}, function(d) {
a.set("page", c);
a.show();
a.callbackFun(d)
}, "json")
}
function Paging(a) {
document.paging = this;
this.component = jQuery("#" + a.fillId);
this.startSpinner = a.startSpinner;
this.stopSpinner = a.stopSpinner;
this.num = parseInt(a.num, 10) || 5;
this.count = parseInt(a.count, 10);
this.page = parseInt(a.page, 10);
this.totalPage = parseInt(a.totalPage, 10);
this.message = a.message || "暂无数据";
this.url = a.url || "";
this.callbackFun = a.callback1;
this.isShowBotton = a.isShowBotton;
this.isShowNum = a.isShowNum;
if (this.isShowBotton == undefined) {
this.isShowBotton = true
}
if (this.isShowNum == undefined) {
this.isShowNum = true
}
this.set = function(b, c) {
this[b] = c
};
this.show = function() {
this.component.empty();
if ( !! this.count && this.count > 0) {
if ( !! this.isShowBotton && this.totalPage > 1) {
if (this.page <= this.totalPage && this.page > 1) {
this.component.append('上一页")
} else {
this.component.append('上一页')
}
this.component.append(" " + this.page + "/" + this.totalPage + " ");
if (this.page < this.totalPage) {
this.component.append('下一页")
} else {
this.component.append('下一页')
}
this.component.append("
")
}
if ( !! this.isShowNum && this.totalPage > 2) {
if (this.totalPage < this.num) {
for (var c = 1; c <= this.totalPage; c++) {
if (this.page == c) {
this.component.append(' ' + c + " ")
} else {
this.component.append(' ' + c + " ")
}
}
} else {
var b = Math.floor(this.num / 2);
var f = this.totalPage - this.page;
var e = 0;
var d = 0;
if (this.page <= b) {
e = this.page - 1;
d = this.num - this.page
} else {
if (f >= b) {
if (this.num & 1) {
e = b
} else {
e = b - 1
}
d = b
} else {
e = this.num - f - 1;
d = f
}
}
for (var c = e; c >= 1; c--) {
this.component.append(' ' + (this.page - c) + " ")
}
this.component.append(' ' + this.page + " ");
for (var c = 1; c <= d; c++) {
this.component.append(' ' + (this.page + c) + " ")
}
}
}
} else {
this.component.append('