如何让需要手动输入的js动态化?
我真的不知道如何问这个问题,所以我在这里写了脚本: http://jsbin.com/acaxi/edit
这非常简单,我正在尝试创建滑动面板。
我知道有很多脚本可以做到这一点,说实话太多了。
如果有人认为您可以推荐一个插件来代替我的脚本,请分享!
I don't really know how to ask this, so I wrote up the script here:
http://jsbin.com/acaxi/edit
It's pretty straight forward, I'm trying to create sliding panels.
I know there's alot of scripts that does that good, to be honest there are too many.
If anyone thinks there is a plugin you could recommend instead of my script then please do share!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我仍然不确定您的问题是什么,但我对您的代码进行了一些修改,使其可以与任意数量的提要面板一起使用(更新的演示)。
要动态添加提要,您需要将单击函数附加到添加的每个新提要或使用 jQuery .live() 事件处理程序。我选择了之前的方法。这是更新的演示,以及代码:
I'm still not sure what your question is, but I reworked your code a bit to make it work with any number of feed panels (updated demo).
To add feeds dynamically you'll need to either attach a click function to each new feed added or use the jQuery .live() event handler. I opted for the previous method. Here is the updated demo, and the code: