gpt4 book ai didi

r - 在 Shiny App 的页面开头添加类到 标签

转载 作者:行者123 更新时间:2023-12-02 06:53:03 25 4
gpt4 key购买 nike

我想在 Shiny 的应用程序中呈现的 HTML 的开头向标记添加一个类。

例如,使用此代码生成一个基本应用程序:

library(shiny)
ui <- basicPage()
server <- function(input, output){}
shinyApp(ui, server)

如果您检查页面,您会看到开头的 html 标记为:
<html style="overflow: hidden;">

我想让它像这样:
<html class="myclass" style = "overflow: hidden;">

有没有办法在不使用 javascript 的情况下做到这一点?

最佳答案

您可以使用 tags$html为了这。 tags包含更多其他 HTML标签,你可以找他们?shiny::tags

library(shiny)
ui <- basicPage(
tags$html(class="myclass", style = "overflow: hidden;")
)
server <- function(input, output){}
shinyApp(ui, server)

回复评论:

This doesn't quite do what I want it to. This will add a new html tag inside the page, whereas I want to edit the one that's automatically generated



你确定吗?当我检查 HTML 代码时,我可以看到它修改了 < html > 标签:

enter image description here

关于r - 在 Shiny App 的页面开头添加类到 <html> 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38531214/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com