- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 carouFredSel在同一页面上创建多个轮播。如果你看这个JSFiddle您会看到有两个轮播,但只有一个可以使用下一个/上一个按钮滚动。
在不添加类或 ID 的情况下,我试图让按钮只滚动相应的轮播。我相信这是通过一个函数来完成的,但我不完全确定如何。像这样:
prev: {
button: function() {
$(this).next('.prev');
}
},
最佳答案
看看这个,它就在文档中:
prev: {
button: function() {
return $(this).parent().siblings(".prev");
}
},
next: {
button: function() {
return $(this).parent().siblings(".next");
}
}
哦,请注意,我取出了 key
,因为这样您就必须同步轮播……您可以选择其中之一,但不能同时选择两者。 (除非你有条件地分配 key ,但是你的小代码)
--
http://caroufredsel.frebsite.nl/code-examples/configuration.php搜索:“动态获取按钮和容器的 HTML 元素”
关于javascript - carouFredSel : Create a function for next/prev buttons?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9540515/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!