公告板
版本库
filestore
活动
搜索
登录
main
/
wms_saas
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
.
18516761980
2022-04-07
5972c5e0070c00d65eb9d08b4c49357dbf3808c4
[wms_saas.git]
/
src
/
main
/
webapp
/
static
/
js
/
cols.js
1
2
3
4
5
6
7
$
(
function
()
{
$
(
"tr"
).
mousemove
(
function
()
{
$
(
this
).
css
(
"background-color"
,
"pink"
);
}).
mouseout
(
function
()
{
$
(
this
).
css
(
"background-color"
,
"White"
);
})
})