有没有办法阻止Microsoft's bot framework's Web Chat内的自动更正?
答案 0 :(得分:3)
事实证明,自动完成/自动更正/拼写检查等。是浏览器功能,完全独立于网络聊天。
这对我有用:
<script>
var textbox = document.querySelector('.wc-textbox')
textbox.setAttribute('autocomplete', 'off')
textbox.setAttribute('autocorrect', 'off')
textbox.setAttribute('autocapitalize', 'off')
textbox.setAttribute('spellcheck', 'false')
</script>