0
|
yuzhimingLv2初级互助发布于2019-5-18 11:29
|
清空一下暂存保存的缓存,看是否正常
|
-
梦溪(提问者)
- 不可以 还是会全部变色 不只是暂存之后会出现这种情况 点过提交之后也会出现这种情况
-
yuzhiming 回复 梦溪(提问者)
- 光说也看不着,要不把模板导出来看看把
-
梦溪(提问者) 回复 yuzhiming
- var background_color = \"rgb(252,200,0)\"; //新背景色
var frozen_back_color = new Array();
var back_color = new Array();
var $last_tr;
var i = 6;
// 首行除外
$(\'.x-table tr:gt(6)\') .bind(\"mouseenter\", function () {
//$(\".x-table tr\")
if (typeof($last_tr) != \"undefined\") {
if (typeof($(this).attr(\"id\")) != \"undefined\") {
if (typeof($(\"#content-container #frozen-west\").attr(\"id\")) != \"undefined\") {
$(\"#content-container #\" + $last_tr.attr(\"id\")).each(function () {
$(this).children(\"td\").each(function () {
$(this).css(\"background-color\", frozen_back_color[$(this).index()]);
});
i = i + 1;
});
i = 6;
} else {
$last_tr.children(\"td\").each(function () {
$(this).css(\"background-color\", back_color[$(this).index()]);
});
}
frozen_back_color = [];
back_color = [];
}
}
if (typeof($(this).attr(\"id\")) != \"undefined\") {
if (typeof($(\"#content-container #frozen-west\").attr(\"id\")) != \"undefined\") {
$(\"#content-container #\" + $(this).attr(\"id\")).each(function () {
frozen_back_color = new Array();
$(this).children(\"td\").each(function () {
frozen_back_color[$(this).index()] = $(this).css(\"background-color\");
$(this).css(\"background-color\", background_color);
});
i = i + 1;
});
i = 6;
} else {
$(this).children(\"td\").each(function () {
back_color[$(this).index()] = $(this).css(\"background-color\");
$(this).css(\"background-color\", background_color);
});
}
}
});
//首行除外
$(\'.x-table tr:gt(6)\') .bind(\"mouseleave\", function () {
if (typeof($(this).attr(\"id\")) != \"undefined\") {
$last_tr = $(this);
}
});
这是设置的js代码 这个有问题吗
-
yuzhiming 回复 梦溪(提问者)
- 这个代码都被转译了啊
|
|