gpt4 book ai didi

javascript - jQuery - 使用已弃用的 toggle() 更新函数

转载 作者:行者123 更新时间:2023-11-29 19:48:57 26 4
gpt4 key购买 nike

<分区>

我想将我的网站更新到 jQuery 1.10,但我使用了一个带有已弃用的 toggle() 的函数。

我记得,我第一次让这个函数工作时遇到了困难,它是否存在可以替换 toggle() 而无需更改所有代码的函数。

我不是 jQuery 专家,不胜感激。

CSS:

fieldset.collapsed * {
display: none;
}

fieldset.collapsed h2, fieldset.collapsed {
display: block !important;
}

fieldset.collapsed h2 {
background-image: url(../img/nav-bg.gif);
background-position: bottom left;
color: #999;
}

fieldset.collapsed .collapse-toggle {
background: transparent;
display: inline !important;
}

j查询:

var sPath=window.location.pathname;
(function ($) {
$(document).ready(function () {
function show () { // Show
$(this).text(gettext("Hide"))
.closest("fieldset")
.removeClass("collapsed")
.trigger("show.fieldset", [$(this).attr("id")]);
window.localStorage.setItem($(this).attr("id"), true);
}
function hide () { // Hide
$(this).text(gettext("Show"))
.closest("fieldset")
.addClass("collapsed")
.trigger("hide.fieldset", [$(this).attr("id")]);
window.localStorage.removeItem($(this).attr("id"))
return false;
}
// Add anchor tag for Show/Hide link
$("fieldset.collapse").each(function (i, elem) {
// Don't hide if fields in this fieldset have errors
key = 'fieldsetcollapser' + i + sPath;
if (typeof (window.localStorage) != 'undefined') {
var item = $(elem)
.addClass("collapsed")
.find("h2")
.first()
.append(' (<a id=' +
key +
' " class="collapse-toggle" href="#">' +
gettext("Show") +
'</a>)'
).find('a');
if (window.localStorage.getItem(key)) {
//alert('show')
show.apply(item);
$(item).toggle(hide, show);
}else {
if ($("ul.errorlist").length >0) {
//alert('yo show')
show.apply(item);
$(item).toggle(hide, show);
}else{
$(item).toggle(show, hide);
//alert("hide")
}
}

} else {
throw "window.localStorage, not defined";
}
});
});

编辑: See how it works here (使用 jQuery 1.6)

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com