我正在运行票务软件,能够操纵CSS和JS进行自定义,我需要将视频URL转换为iframe。我目前正在使用此代码:
$('#wiki-page-content').contents().each(function() {
// Skip non text nodes.
if (this.nodeType !== 3) {
return true;
}
// Grab text
var matches = this.data.match(/(?:http:\/\/)?(?:www\.)?(?:youtube\.com|youtu\.be)\/(?:watch\?v=)?(.+)/g);
if (!matches) {
return true;
}
var iframe = $('<iframe width="420" height="345" frameborder="0" allowfullscreen />', {
src: 'http://www.youtube.com/embed/' + matches[1]
});
iframe.insertAfter(this);
$(this).remove();});
现在,问题是当某人使用文本编辑器将URL放入WIKI页面时,它会在其周围包裹<P></P>
标记。这会导致问题吗?我怎么能克服这个。
答案 0 :(得分:0)
标签的noteType等于1.尝试这样的事情:
library(dplyr)
data %>% group_by(Point,CODE) %>%
summarise(TotArea = sum(Area))