css api 的 jquery if else 条件
我有下面的 jquery 语句
$(this).('span.section1').css('background','url("images/accordion_closed_left.png") no-repeat scroll 0 0 transparent');
如何为 css 条件编写 if else 语句。我的意思是,如果背景图像是 Accordion_lined_left.png 则
或
。
准确地说,
是语句块。
感谢您抽出时间。
I have the below jquery statement
$(this).('span.section1').css('background','url("images/accordion_closed_left.png") no-repeat scroll 0 0 transparent');
How do I write a if else statement for the css condition. What I mean is if the background image is accordion_closed_left.png then <do this>
or else <do this>
.
just to be precise <do this>
are blocks of statement.
Thanks for your time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我建议改用 css 类,然后调用 jQuery 的
.hasClass()
方法:css:
js< /强>:
I'd recommend to use a css class instead and then call jQuery's
.hasClass()
method on it:css:
js:
如何用 'guides' 作为类名在
jQuery
中编写此代码......How to write this in
jQuery
with 'guides' as a class name....天真地回答你的问题:
但是我支持jAndy的答案, .hasClass() 是要走的路!
To naively answer your question:
However I support jAndy's answer, .hasClass() is the way to go!