jQuery中有toggleSrc方法吗?
jQuery 有没有类似toggleSrc :-p 的东西?
我想在div的slideToggling上更改图像的src。是否有类似的东西让我有机会不编写条件语句来检查图像的src以更改为另一个src。 (我不懒!!!)
Does jQuery have something like toggleSrc :-p ??
I want to change src of an image on slideToggling of a div.is there something like that give me the chance of not writing conditional statement to check the src of image to change to another src.
(I am not lazy !!!)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有内置的方法,但您可以为其制作一个插件,例如:
然后您可以这样调用它:
...或更安全的方法:
您可以在这里进行测试。 (和往常一样)还有 10 种其他方法可以做到这一点,这只是如何做到这一点的一个示例,并且可以节省一些代码重复。
There isn't a built-in method for this, but you could make a plugin for it, for example:
Then you'd call it like this:
...or a big safer:
You can test it out here. There are (as usual) 10 other ways to do this as well, this is just one example of how to do this and save you some code repetition.