如何动态地将字符串文本附加到闪亮的应用程序的正文中?

时间:2016-12-30 17:21:58

标签: javascript jquery r shiny shinyjs

我正在尝试在selectInput之后将反应性文本(来自tags$h3的颜色名称)附加到闪亮应用的正文中。我想这更像是一个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)
       })
      })

1 个答案:

答案 0 :(得分:1)

我认为这就是你想要的。它编辑h3' element with the colorLabel`类的innerhtml。我还在ui代码中添加了一个相应的空初始化元素,因此可以进行编辑。

library(shiny)
library(shinyjs)

jsCode <- "shinyjs.pageCol = function(params){
$('body').css('background', params);
$('h3.colorLabel').text(params); 
};
"

u <- 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'),
  tags$h3('',class = 'colorLabel')
))


s <- shinyServer(


  function(input,output,session) {

    observeEvent(input$col, {
      js$pageCol(input$col)
    })
  })
shinyApp(ui = u,server = s)

得到以下特性:

enter image description here

这就是内部编辑的内容:

enter image description here