有没有办法从网页(可能使用 Javascript)触发 Siri 来填充输入文本字段?
问问题
1746 次
1 回答
7
您可能无法直接触发 Siri,但您可以使用x-webkit-speech
html5 输入类型,这将增加使用语音输入的能力:
<input type="text" x-webkit-speech>
它也应该在移动 Safari 中可用:http ://caniuse.com/#feat=web-speech
有关更多信息,您可以参考:http ://blog.teamtreehouse.com/accepting-speech-input-html5-forms
于 2014-11-11T15:52:35.443 回答