我希望有人可以帮助我。我有这个在这个站点上实现的jquery脚本。 www.runebs.dk(代码是符文)..
$(window).trigger('scroll'); // init the value
});
$(window).on('scroll', function(){
var pos = $('#subHeadline').offset();
$('.article-header').each(function() {
if (pos.top >= $(this).offset().top && pos.top <= $(this).next().offset().top) {
$('#subHeadline').html($(this).html());
return;
}
});
$('button').on('click', function () {
$(this).text($(this).text() == '(-)' ? '(+)' : '(-)');
$('.description' ).slideToggle('fast');
});
});
我的问题是,当您将+符号更改为减号时..我该如何避免?
答案 0 :(得分:0)
$(window).on("scroll", function(){
//implement the functionality for the scroll
}).find("#buttonID").on("click", function(){
//write functionality for the button
});