我正在为我的项目使用set.seed(1)
a <- cumsum(rnorm(10))
b <- cumsum(rnorm(10))
new_b <- c(rep(NA, length(a)-1),a[length(a)], b)
plot(a, type = "l", xlim=c(0,20), ylim=c(-10,10), xlab="", ylab="", col=2)
lines(new_b, col=3)
手风琴,他们提供这些功能:
framework7vue
当用户点击任何手风琴时会触发此事件。 this.$f7.on('accordionOpened', function (el) {
console.log('The following element opened:');
console.log(el);
});
将为您提供el
元素。
html
但是,我想要其他dom详细信息,例如<div class="accordion-item" ...></div>
,以便我知道元素本身的位置。
我怎样才能将我所拥有的内容转换成那个?