gpt4 book ai didi

javascript - 将 selectInput 传递给 html 标签

转载 作者:行者123 更新时间:2023-11-30 11:26:38 25 4
gpt4 key购买 nike

我有一个 html 标签 tags$a(href='mailto:email@helloWorld.com?subject=myReport&body=practice level = input$pe', "Click here!") 和我想在我的标签中传递 input$pe。但现在,我只得到原始文本。任何帮助将不胜感激。

最佳答案

你可以使用 paste0:

tags$a(paste0("href='mailto:email@helloWorld.com?subject=myReport&body=practice level = ", input$pe,"'"), "点击这里!")

如果 input$pe = abc:

<a>
href='mailto:email@helloWorld.com?subject=myReport&amp;body=practice level = abc'
Click here!
</a>

关于javascript - 将 selectInput 传递给 html 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47756921/

25 4 0