33555667 by 任超

style:政务公开

1 parent 80ef6809
......@@ -2,8 +2,10 @@ $(function () {
// newsDetail()
if (decodeURI(GetQueryString('title')) == '首页') {
$('.law-second-label').hide();
$('.law-second-label').next().hide();
}else {
$('.law-second-label').show();
$('.law-second-label').next().show();
$('.law-second-label').attr('href',GetQueryString('href'));
$('.law-second-label').attr('title', decodeURI(GetQueryString('title')));
$('.law-second-label').text(decodeURI(GetQueryString('title')));
......
......@@ -2,8 +2,10 @@ $(function () {
// newsDetail()
if (decodeURI(GetQueryString('title')) == '首页') {
$('.notice-second-label').hide();
$('.notice-second-label').next().hide();
}else {
$('.notice-second-label').show();
$('.notice-second-label').next().show();
$('.notice-second-label').attr('href',GetQueryString('href'));
$('.notice-second-label').attr('title', decodeURI(GetQueryString('title')));
$('.notice-second-label').text(decodeURI(GetQueryString('title')));
......
......@@ -2,8 +2,10 @@ $(function () {
// LawsData()
if (decodeURI(GetQueryString('title')) == '首页') {
$('.layui-breadcrumb a').eq(1).hide();
$('.layui-breadcrumb a').eq(1).next().hide();
}else {
$('.layui-breadcrumb a').eq(1).show();
$('.layui-breadcrumb a').eq(1).next().show();
$('.layui-breadcrumb a').eq(1).attr('href',GetQueryString('href'));
$('.layui-breadcrumb a').eq(1).attr('title', decodeURI(GetQueryString('title')));
$('.layui-breadcrumb a').eq(1).text(decodeURI(GetQueryString('title')));
......
$(function () {
if (decodeURI(GetQueryString('title')) == '首页') {
$('.second-label').hide();
$('.second-label').next().hide();
}else {
$('.second-label').show();
$('.second-label').next().show();
$('.second-label').attr('href',GetQueryString('href'));
$('.second-label').attr('title', decodeURI(GetQueryString('title')));
$('.second-label').text(decodeURI(GetQueryString('title')));
......