我正在尝试使用jQuery slideToggle显示/隐藏一系列列表,并且需要在单击它们之后对显示/隐藏的超链接应用不同的css样式,然后切换回再次点击它们的原始风格。将此示例视为资源:http://papermashup.com/jquery-show-hide-plugin/
在下面的代码段中,有以下内容:
$(toggleDiv).is(":visible") ? toggleClick.text(options.hideText) : toggleClick.text(options.showText);
尝试使用以下内容并且有效:
$(toggleDiv).is(":visible") ? toggleClick.text(options.hideText).css({ backgroundColor: '#399C05' }) : toggleClick.text(options.showText).css({ backgroundColor: '#FFFFFF' });
但是我需要更改css中的背景图像而不是像这样的背景颜色:
$(toggleDiv).is(":visible") ? toggleClick.text(options.hideText).css({ background: url(/images/icon_image1.gif) }) : toggleClick.text(options.showText).css({ url(/images/icon_image1.gif) });
但是,这显示“Microsoft JScript运行时错误:对象不支持此属性或方法”并且显示/隐藏停止工作。
还尝试使用以下方式切换类:
$('#toggleDiv').toggleClass('show_hideClose', $(this).is(':visible'));
其中show_hideClose基本上是下面片段中show_hide的副本,这导致了上面的相同错误。
所以我有:
$('.show_hide').showHide({
speed: 1000, // speed you want the toggle to happen
easing: '', // the animation effect you want. Remove this line if you dont want an effect and if you haven't included jQuery UI
changeText: 1, // if you dont want the button text to change, set this to 0
showText: 'View Available Programs', // the button text to show when a div is closed
hideText: 'Hide Program Listing' // the button text to show when a div is open
});
和
(function ($) {
$.fn.showHide = function (options) {
//default vars for the plugin
var defaults = {
speed: 1000,
easing: '',
changeText: 0,
showText: 'Show',
hideText: 'Hide'
};
var options = $.extend(defaults, options);
$(this).click(function () {
$('.toggleDiv').slideUp(options.speed, options.easing);
// this var stores which button you've clicked
var toggleClick = $(this);
// this reads the rel attribute of the button to determine which div id to toggle
var toggleDiv = $(this).attr('rel');
// here we toggle show/hide the correct div at the right speed and using which easing effect
$(toggleDiv).slideToggle(options.speed, options.easing, function() {
// this only fires once the animation is completed
if(options.changeText==1) {
$(toggleDiv).is(":visible") ? toggleClick.text(options.hideText) : toggleClick.text(options.showText);
//$(toggleDiv).is(":visible") ? toggleClick.text(options.hideText).css({ backgroundColor: '#399C05' }) : toggleClick.text(options.showText).css({ backgroundColor: '#FFFFFF' }); //<-This works with background colors but not with background url
}
});
return false;
});
};
})(jQuery);
超链接位于.NET C#转发器内,并包含转发器:
<asp:Repeater ID="rptMyContentGroups" runat="server" OnItemDataBound="rptMyContentGroups_OnItemDataBound">
<ItemTemplate>
<a href="#" id="blah" class="show_hide" rel='# <%=rptmyContent.ClientID%>_programList_<%# GetDivClass() %>'>View</a>
<div id="programList" runat="server" style="display: none;">
<asp:Repeater ID="rptMyContent" runat="server" OnItemDataBound="rptMyContent_OnItemDataBound">
<HeaderTemplate>
<ul>
</HeaderTemplate>
<ItemTemplate>
<li>
<asp:HyperLink ID="hypContentDetail" runat="server" />
</li>
</ItemTemplate>
<FooterTemplate>
</ul>
</FooterTemplate>
</asp:Repeater>
</div>
</ItemTemplate>
</asp:Repeater>
更新:
尝试使用:
$(toggleDiv).is(":visible") ? toggleClick.text(options.hideText).css('background-image', 'url("' + /images/icon_a.gif + '")') : toggleClick.text(options.showText).css('background-image', 'url("' + /images/icon_b.gif + '")');
IE说我错过了a)我不是。 Visual Studio告诉我:“Microsoft JScript运行时错误:对象不支持此属性或方法”。
答案 0 :(得分:0)
这通常是更改background-image css属性的正确语法:
$(toggleDiv).is(":visible")
? toggleClick
.text(options.hideText)
.css('background-image', 'url(/images/icon_image1.gif)')
: ...
但我强烈建议您为插件添加一个选项并使用addClass / removeClass。这将使您的插件更加可自定义,而无需在代码中对图像的URL进行硬编码。
// pass the option
$('.show_hide').showHide({
...
showText: 'View Available Programs',
hideText: 'Hide Program Listing',
hideClass: 'myClassForHide'
});
// use it in your toggle
$(toggleDiv).is(":visible")
? toggleClick
.text(options.hideText)
.addClass(options.hideClass)
: toggleClick
.text(options.hideText)
.removeClass(options.hideClass)
答案 1 :(得分:0)
好的......看起来语法和引号在这里完全不同。这似乎有效:
$(toggleDiv).is(":visible") ? toggleClick.text(options.hideText).css('background-image', 'url(/images/image1.gif)') : toggleClick.text(options.showText).css('background-image', 'url(/images/image2.gif)');
踢我自己不早点尝试。