2

我有 2 个正在使用的脚本,我想将它们组合成 1 个,但我没有成功,所以如果可能的话,我将不胜感激。第一个脚本是按下全部展开和全部折叠按钮时的显示/隐藏:

    $(".hide").click(function(){
$(".screentitle").hide();
});
$(".show").click(function(){
$(".screentitle").show();
});

我使用的第二个代码是 slideToggle 的图像交换:

    $(".chaptertitle").live("click", function(){
$(".screentitle", this).slideToggle("fast");
var $img = $(".img-swap", this);
    if ($img.attr('src').indexOf("plus.png") > -1) {
    $img.attr('src', $img.attr('src').replace('plus', 'minus'));
return false;
    } else {
    $img.attr('src', $img.attr('src').replace('minus', 'plus'));
4

0 回答 0