Authored by wenjiekong

修改问题

... ... @@ -28,15 +28,6 @@ var provFn,
var alertConfig,
makeAlert;
function getCookie(name)
{
var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)");
if(arr=document.cookie.match(reg))
return unescape(arr[2]);
else
return null;
}
// j面跳转对象
var redirect = {
... ... @@ -69,6 +60,17 @@ identityFn = handlebars.compile($('#identity-back').html() || '');
require('../plugins/slider');
function getCookie(name) {
var arr, reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)');
if (arr === document.cookie.match(reg)) {
return unescape(arr[2]);
} else {
return null;
}
}
/** *埋点方法***/
function givePoint(op, parameter) {
var CID = 1;
... ... @@ -133,6 +135,7 @@ function closeStuSelect() {
$('.ident-select-wrap .select-ul').empty();
}
/**
* 清除加载的下拉数据,还原点击状态,获取点击数据
* @param
... ... @@ -422,7 +425,7 @@ $stuYear.on('click', function() {
}
});
$('.ident-select-wrap > .arrow-down' ).click(function(){
$('.ident-select-wrap > .arrow-down').click(function() {
$(this).next().click();
});
... ...
... ... @@ -408,6 +408,7 @@
text-overflow: ellipsis;
white-space: nowrap;
}
.good-detail-text .brand {
display: none;
}
... ...