접근성수정
This commit is contained in:
parent
7c7ea638db
commit
1195035516
@ -71,7 +71,7 @@ window.onload = function() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// 탭 액티브 중복 방지
|
// 탭 액티브 중복 방지
|
||||||
$(".tab ul.tabs").removeClass("active").find("> li:eq(0)").removeClass("current");
|
$(".tab ul.tabs").removeClass("active").find("> li:eq(0)").removeClass("current").removeAttr('title','');;
|
||||||
|
|
||||||
$("#referencelistForm input:checkbox[name='reQueryChk']").on('change', function() {
|
$("#referencelistForm input:checkbox[name='reQueryChk']").on('change', function() {
|
||||||
if ( $(this).prop('checked') )
|
if ( $(this).prop('checked') )
|
||||||
@ -109,7 +109,7 @@ window.onload = function() {
|
|||||||
function fnSetInitialValue()
|
function fnSetInitialValue()
|
||||||
{
|
{
|
||||||
//탭
|
//탭
|
||||||
$("#"+"${searchVO.collection}").parent().addClass('current');
|
$("#"+"${searchVO.collection}").parent().addClass('current').attr('title','선택됨');
|
||||||
//페이징
|
//페이징
|
||||||
gfn_makePaging("fn_search_article",'${pageVO.pageIndex}','${pageVO.totRecordCount}','${pageVO.startPage}','${pageVO.endPage}','${pageVO.lastPage}');
|
gfn_makePaging("fn_search_article",'${pageVO.pageIndex}','${pageVO.totRecordCount}','${pageVO.startPage}','${pageVO.endPage}','${pageVO.lastPage}');
|
||||||
|
|
||||||
|
|||||||
@ -27,12 +27,13 @@ $(document).ready(function(){
|
|||||||
/* 인기자료 탭메뉴 */
|
/* 인기자료 탭메뉴 */
|
||||||
(function ($) {
|
(function ($) {
|
||||||
$(".tab ul.tabs").addClass("active").find("> li:eq(0)").addClass("current");
|
$(".tab ul.tabs").addClass("active").find("> li:eq(0)").addClass("current");
|
||||||
|
$(".tab ul.tabs").addClass("active").find("> li:eq(0)").attr('title','선택됨');
|
||||||
$(".tab ul.tabs li a").click(function (g) {
|
$(".tab ul.tabs li a").click(function (g) {
|
||||||
var tab = $(this).closest(".tab"),
|
var tab = $(this).closest(".tab"),
|
||||||
index = $(this).closest("li").index();
|
index = $(this).closest("li").index();
|
||||||
|
|
||||||
tab.find("ul.tabs > li").removeClass("current");
|
tab.find("ul.tabs > li").removeClass("current").removeAttr('title','');
|
||||||
$(this).closest("li").addClass("current");
|
$(this).closest("li").addClass("current").attr('title','선택됨');
|
||||||
|
|
||||||
tab.find(".tab_content")
|
tab.find(".tab_content")
|
||||||
.find("div.tabs_item")
|
.find("div.tabs_item")
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user