【发布时间】:2017-05-14 23:35:54
【问题描述】:
我正在尝试在tags$h3 之后将反应文本(来自selectInput 的颜色名称)附加到闪亮应用程序的主体。我想这更像是一个 jquery 问题,但现在它一直在添加选定的颜色,而不是“反应地”显示字符串。
我想要的是替换 h3.colorLabel 中的字符串。
ui.R
library(shiny)
jsCode <- "shinyjs.pageCol = function(params){
$('body').css('background', params);
/*$('.colorName').after('<h3></h3>').addClass('colorLabel');
$('h3.colorLabel').replaceWith('<h3>'+params+'</h3>').addClass('colorLabel');
*/
$('h3.colorName').after('<h3>'+params+'</h3>').addClass('colorLabel');
};
"
shinyUI( fluidPage(
useShinyjs(),
extendShinyjs(text = jsCode),
selectInput("col", "Colour:",
c("white", "yellow", "red", "blue", "purple")),
tags$h3('Just in case you are color-blind, the background color is:', class='colorName')
))
server.R
library(shiny)
library(shinyjs)
shinyServer(
function(input,output,session) {
observeEvent(input$col, {
js$pageCol(input$col)
})
})
【问题讨论】:
标签: javascript jquery r shiny shinyjs