【发布时间】:2018-05-20 07:19:22
【问题描述】:
有谁知道我如何在闪亮的应用程序中获取 textAreaInput 中的光标位置?
library(shiny)
ui <- fluidPage(
textAreaInput("hop"
,label="textarea",value = "Supercalifragilisticexpialidocious"),
verbatimTextOutput("out")
)
server <- function(input, output, session) {
output$out <- renderText({
"here I would like to get the cursor position (an interger?) \n inside que textArea"
})
}
shinyApp(ui, server)
我想我必须使用 javascript,但我不知道从哪里开始。
问候
【问题讨论】:
标签: javascript r shiny