是否可以将占位符文本添加到用户输入文本框?

时间:2018-10-26 15:43:18

标签: c# .net botframework chatbot

是否可以在用户输入文本框中添加占位符文本?

我看到Microsoft在其Office365支持聊天机器人中具有此功能

enter image description here

您会注意到它说“例如...。”

是否可以在bot框架中添加它?

1 个答案:

答案 0 :(得分:0)

您可以使用BotFramework的 WebChat 控件和一些常用的javascript来做到这一点:

var input = document.getElementsByClassName("wc-shellinput")[0];
input.placeholder = "e.g. How do I install Office";

结果:

enter image description here